NAMD
Public Member Functions | Public Attributes | List of all members
msm::FoldFactor Struct Reference

#include <MsmMap.h>

Public Member Functions

 FoldFactor ()
 
 FoldFactor (int i, int j, int k)
 
void set (int i, int j, int k)
 

Public Attributes

int active
 
Ivec numrep
 

Detailed Description

Definition at line 851 of file MsmMap.h.

Constructor & Destructor Documentation

msm::FoldFactor::FoldFactor ( )
inline

Definition at line 854 of file MsmMap.h.

854 : active(0), numrep(1) { }
msm::FoldFactor::FoldFactor ( int  i,
int  j,
int  k 
)
inline

Definition at line 855 of file MsmMap.h.

References set().

855 { set(i,j,k); }
void set(int i, int j, int k)
Definition: MsmMap.h:856

Member Function Documentation

void msm::FoldFactor::set ( int  i,
int  j,
int  k 
)
inline

Definition at line 856 of file MsmMap.h.

References active, and numrep.

Referenced by FoldFactor().

856  {
857  if (i <= 0) i = 1;
858  if (j <= 0) j = 1;
859  if (k <= 0) k = 1;
860  if (i > 1 || j > 1 || k > 1) active = 1;
861  numrep = Ivec(i, j, k);
862  }

Member Data Documentation

int msm::FoldFactor::active

Definition at line 852 of file MsmMap.h.

Referenced by set().

Ivec msm::FoldFactor::numrep

Definition at line 853 of file MsmMap.h.

Referenced by set().


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