MarlinKinfit  0.4.0
BaseDefs.h
1 #ifndef BASEDEFS_HH
2 #define BASEDEFS_HH
3 
4 class BaseDefs {
5  public:
6 
7  // define labels for bases (sets of intermediate variables)
8  enum { VARBASIS_EPXYZ=0, VARBASIS_VXYZ, VARBASIS_TRKNORMAL, NMETASET };
9 
10  // max # of variables in the above bases
11  enum {MAXINTERVARS=4};
12 
13  // maximum number of parameters for a fit object
14  enum {MAXPAR = 10};
15 
16  // this is used to store how many variables in each base (should be <= maxInter)
17  static const int nMetaVars[NMETASET];
18 
19 };
20 
21 #endif
22 
23 
Definition: BaseDefs.h:4