NAMD
Public Member Functions | Public Attributes | List of all members
patch_sortop_curve_c Struct Reference

Public Member Functions

 patch_sortop_curve_c (PatchMap *m)
 
bool operator() (int p1, int p2) const
 

Public Attributes

PatchMappmap
 

Detailed Description

Definition at line 1955 of file WorkDistrib.C.

Constructor & Destructor Documentation

patch_sortop_curve_c::patch_sortop_curve_c ( PatchMap m)
inline

Definition at line 1957 of file WorkDistrib.C.

1957 : pmap(m) {}

Member Function Documentation

bool patch_sortop_curve_c::operator() ( int  p1,
int  p2 
) const
inline

Definition at line 1958 of file WorkDistrib.C.

References PatchMap::index_a(), PatchMap::index_b(), PatchMap::index_c(), and pmap.

1958  {
1959  int a1 = pmap->index_c(p1);
1960  int a2 = pmap->index_c(p2);
1961  if ( a1 < a2 ) return true;
1962  if ( a1 > a2 ) return false;
1963  int dir = ( (a1 & 1) ? -1 : 1 );
1964  int b1 = pmap->index_a(p1);
1965  int b2 = pmap->index_a(p2);
1966  if ( b1 * dir < b2 * dir ) return true;
1967  if ( b1 * dir > b2 * dir ) return false;
1968  dir *= ( (b1 & 1) ? -1 : 1 );
1969  int c1 = pmap->index_b(p1);
1970  int c2 = pmap->index_b(p2);
1971  if ( c1 * dir < c2 * dir ) return true;
1972  return false;
1973  }
int index_a(int pid) const
Definition: PatchMap.h:86
int index_b(int pid) const
Definition: PatchMap.h:87
int index_c(int pid) const
Definition: PatchMap.h:88

Member Data Documentation

PatchMap* patch_sortop_curve_c::pmap

Definition at line 1956 of file WorkDistrib.C.

Referenced by operator()().


The documentation for this struct was generated from the following file: