emutil.cpp File Reference

#include "all_imageio.h"
#include "portable_fileio.h"
#include "emcache.h"
#include "emdata.h"
#include "ctf.h"
#include "emassert.h"
#include "exception.h"
#include "hdf_filecache.h"
#include <boost/shared_ptr.hpp>
#include <sys/param.h>

Include dependency graph for emutil.cpp:

Go to the source code of this file.

Functions

static int imgscore_cmp (const void *imgscore1, const void *imgscore2)

Variables

static const int ATTR_NAME_LEN = 128


Function Documentation

static int imgscore_cmp ( const void *  imgscore1,
const void *  imgscore2 
) [static]

Definition at line 1224 of file emutil.cpp.

References Assert.

Referenced by EMAN::ImageSort::sort().

01225 {
01226         Assert(imgscore1 != 0);
01227         Assert(imgscore2 != 0);
01228 
01229         float c = ((ImageScore *)imgscore1)->score - ((ImageScore *)imgscore2)->score;
01230         if (c<0) {
01231                 return 1;
01232         }
01233         else if (c>0) {
01234                 return -1;
01235         }
01236         return 0;
01237 }


Variable Documentation

const int ATTR_NAME_LEN = 128 [static]

Definition at line 66 of file emutil.cpp.


Generated on Fri Aug 10 16:32:58 2012 for EMAN2 by  doxygen 1.4.7