CMS 3D CMS Logo

TreeStruct.h
Go to the documentation of this file.
1 #ifndef Alignment_CommonAlignmentAlgorithm_plugins_TreeStruct_h
2 #define Alignment_CommonAlignmentAlgorithm_plugins_TreeStruct_h
3 
5 
6 struct TreeStruct {
7  TreeStruct() : delta(0.f), error(0.f), paramIndex(0) {}
8  TreeStruct(int ind) : delta(0.f), error(0.f), paramIndex(ind) {}
9  TreeStruct(float del, float err, int ind) : delta(del), error(err), paramIndex(ind) {}
10 
11  float delta;
12  float error;
13  int paramIndex;
14  static const char* LeafList() { return "delta/F:error/F:paramIndex/I"; }
17 };
18 
19 #endif
f
double f[11][100]
Definition: MuScleFitUtils.cc:78
TreeStruct::delta
float delta
Definition: TreeStruct.h:11
TreeStruct
structure to store algorithm results in a TTree
Definition: TreeStruct.h:6
TreeStruct::TreeStruct
TreeStruct(int ind)
Definition: TreeStruct.h:8
TreeStruct::LeafList
static const char * LeafList()
Definition: TreeStruct.h:16
submitPVResolutionJobs.err
err
Definition: submitPVResolutionJobs.py:85
TreeStruct::error
float error
parameter from alignment algorithm (change wrt. start)
Definition: TreeStruct.h:12
TreeStruct::paramIndex
int paramIndex
error from alignment algorithm
Definition: TreeStruct.h:13
TreeStruct::TreeStruct
TreeStruct(float del, float err, int ind)
Definition: TreeStruct.h:9
TreeStruct::TreeStruct
TreeStruct()
Definition: TreeStruct.h:7