CMS 3D CMS Logo

MillePedeTrees.h
Go to the documentation of this file.
1 // Original Author: Gero Flucke
2 // last change : $Date: 2012/03/29 08:13:18 $
3 // by : $Author: flucke $
4 
5 #ifndef MILLEPEDETREES_H
6 #define MILLEPEDETREES_H
7 
8 #include "TString.h"
9 
10 class TTree;
11 class TGraph;
12 class TH1;
13 class TH2;
14 class TProfile;
15 
17 {
18  public:
19  explicit MillePedeTrees(const char *fileName, Int_t iter = 1, const char *treeNameAdd = "");
20  virtual ~MillePedeTrees();
21 
22  TH1* Draw(const char *exp, const char *selection, const char *hDef = "", Option_t *opt = "");
23  TH1* CreateHist(const char *exp, const char *select, const char *hDef = "", Option_t *opt = "");
24  TH2* CreateHist2D(const char *expX, const char *expY, const char *select,
25  const char *hDef = "", Option_t *opt = "");
26  TProfile* CreateHistProf(const char *expX, const char *expY, const char *select,
27  const char *hDef = "", Option_t *opt = "");
28  TGraph* CreateGraph(const char *expX, const char *expY, const char *select, Option_t *option="");
29 
30 /* void ScanDiffAbove(UInt_t iPar, float absDiff); */
31 
32  // values: absolute positions and orientations; need a 'position tree' as argument or in front
33  TString Pos() const { return "Pos";}
34  TString Pos(UInt_t ui) const { return Pos() += Bracket(ui);}
35  TString XPos() const { return Pos(0);}
36  TString YPos() const { return Pos(1);}
37  TString ZPos() const { return Pos(2);}
38  TString RPos2(const TString &tree) const; // x^2+y^2
39 /* TString RPos(const TString &tree) const { return Sqrt(RPos2(tree));} // sqrt(x^2+y^2) */
40  TString RPos(const TString &tree) const; // sqrt(x^2+y^2) - y-sign if selected by UseSignedR()
41  // (un)set whether RPos should be signed like y, return old setting
42  bool SetUseSignedR(bool use = true) {bool buf = fUseSignedR; fUseSignedR = use; return buf;}//true: radius gets sign of y
43  bool SetBowsParameters(bool use = true) {bool buf = fBowsParameters; fBowsParameters = use; return buf;}//true: bows param. for pede
44  bool SetSurfDefDeltaBows(bool deltaBows) {const bool buf = fSurfDefDeltaBows; fSurfDefDeltaBows = deltaBows; return buf;} // take care: problems for false if drawing 1-sensor modules!
45 
46  TString Phi(const TString &tree) const;
47  TString OrgPos(const TString &pos) const; // pos x, y, z, r, phi,... on original position
48 
49  TString PhiSwaps(double swapAround, const TString &tree1, const TString &tree2) const;
50  TString Theta(const TString &tree) const;
51  TString Alpha(const TString &tree, bool betaMpiPpi) const;
52  TString Beta (const TString &tree, bool betaMpiPpi) const;
53  TString Gamma(const TString &tree, bool betaMpiPpi) const;
54 
55  // values: alignment parameters; need a 'parameter tree' or MpT() as argument or in front
56  TString Par() const { return "Par";}
57  TString Par(UInt_t ui) const { return Par() += Bracket(ui);}
58  TString XPar() const { return Par(0);}
59  TString YPar() const { return Par(1);}
60  TString ZPar() const { return Par(2);}
61  TString Alpha() const { return Par(3);}
62  TString Beta() const { return Par(4);}
63  TString Gamma() const { return Par(5);}
64  TString DiffPar(const TString &t1, const TString &t2, UInt_t iPar) const {
65  return Parenth(t1 + Par(iPar) += Min() += t2 + Par(iPar));}
66  // values: alignment parameter errors from parameter tree (to be given as tree name)
67  TString ParSi(const TString &tree, UInt_t ui) const;
68  TString XParSi(const TString &tree) const { return ParSi(tree, 0);}
69  TString YParSi(const TString &tree) const { return ParSi(tree, 1);}
70  TString ZParSi(const TString &tree) const { return ParSi(tree, 2);}
71  TString AlphaSi(const TString &tree) const { return ParSi(tree, 3);}
72  TString BetaSi(const TString &tree) const { return ParSi(tree, 4);}
73  TString GammaSi(const TString &tree) const { return ParSi(tree, 5);}
74 
75  // values: Delta positions
76  TString DelPos(UInt_t ui, const TString &tree1, const TString &tree2) const;
77  TString DelR(const TString &tree1, const TString &tree2) const;
78  TString DelRphi(const TString &tree1, const TString &tree2) const;
79  // TString DelRphi_b(const TString &tree1, const TString &tree2) const; // version b
80  TString DelPhi(const TString &tree1, const TString &tree2) const;
81  // values: Delta positions wrt. OrgPosT()
82  TString DelPos(UInt_t ui, const TString &tree) const { return DelPos(ui, tree, OrgPosT());}
83  TString DelR(const TString &tree) const { return DelR(tree, OrgPosT());}
84  TString DelRphi(const TString &tree) const { return DelRphi(tree, OrgPosT());}
85  TString DelPhi(const TString &tree) const { return DelPhi(tree, OrgPosT());}
86  // see also TString DeltaPos(const TString &pos, const TString &tree) const;
87 
88  // '25' and '0x7' DataFormats/DetId/interface/DetId.h:
89  TString SubDetId() const { return "(" + OrgPosT() += "Id>>25)&0x7";}
90  TString AlignableTypeId() const { return OrgPosT() += "ObjId";}
91  TString HieraLev(const TString &tree, Int_t level) const {
92  return Parenth(tree + "HieraLevel==" + Int(level));}
93  TString HieraLev(Int_t level) const {return HieraLev(ParT(), level);}
94  // values: from pede, do not add tree in front
95  TString Valid(UInt_t iParam) const;
96  TString Fixed(UInt_t iParam, bool isFixed = true) const;
97  TString AnyFreePar() const;
98  TString Label(UInt_t iParam) const;
99  TString Cor(UInt_t iParam) const;
100  TString Diff(UInt_t iParam) const;
101  TString PreSi(UInt_t iParam) const;
102  TString ParSi(UInt_t iParam) const;
103  TString ParSiOk(UInt_t iParam) const;
104  TString XParSi() const { return ParSi(0);}
105  TString YParSi() const { return ParSi(1);}
106  TString ZParSi() const { return ParSi(2);}
107  TString AlphaSi() const { return ParSi(3);}
108  TString BetaSi() const { return ParSi(4);}
109  TString GammaSi() const { return ParSi(5);}
110  TString HitsX() const { return MpT() += "HitsX";}
111  TString HitsY() const { return MpT() += "HitsY";}
112  TString DeformValue(UInt_t i, const TString &whichOne) const;//start,result,diff
113  TString NumDeformValues(const TString &whichOne) const; //start,result,diff
114 
115  // symbols
116  TString Dot() const { return ".";}
117  TString Plu() const { return "+";}
118  TString Min() const { return "-";}
119  TString Mal() const { return "*";} // fixme? german...
120  TString Div() const { return "/";}
121  TString AndL() const {return "&&";} // logical and (not '&')
122  TString OrL() const {return "||";} // logical or (not '|')
123  // numbers
124  TString Int(Int_t i) const { return Form("%d", i);}
125  TString Int(UInt_t ui) const { return Form("%u", ui);}
126  TString Flt(Float_t f) const { return Form("%f", f);}
127  // brackets and parentheses
128  TString Bra() const { return "[";}
129  TString Ket() const { return "]";}
130  TString Bracket(UInt_t ui) const { return Bra() += Int(ui) += Ket();}
131  TString Bracket(Int_t i) const { return Bra() += Int(i) += Ket();}
132  TString Bracket(const char *s) const { return (Bra() += s) += Ket();}
133  TString Paren() const { return "(";}
134  TString Thesis() const { return ")";}
135  TString Parenth(const char *s) const { return (Paren() += s) += Thesis();}
136  TString Abs(const char *s) const {return Fun("TMath::Abs", s);}
137  // functions
138  TString Fun(const char *fun, const char *s) const { return fun + Parenth(s);}
139  TString Sqrt(const char *s) const { return Fun("sqrt", s);}
140 
141  // units and names for params
142  TString ToMumMuRad(UInt_t iParam) const { return (iParam < 3 ? "*10000" : "*1000000");}
143  TString ToMumMuRadPede(UInt_t iParam) const;
144  TString ToMumMuRadSurfDef(UInt_t iParam) const;
145  TString Name(UInt_t iParam) const;
146  TString NamePede(UInt_t iParam) const;
147  TString NameSurfDef(UInt_t iParam) const;
148  TString DelName(UInt_t iParam) const { return "#Delta"+Name(iParam);}
149  TString DelNameU(UInt_t iParam) const { return DelName(iParam) += Unit(iParam);}
150  TString Unit(UInt_t iParam) const { return (iParam < 3
151  ? " [#mum]"
152  : (iParam < kNpar ? " [#murad]" : ""));}
153  TString UnitPede(UInt_t iParam) const;
154  TString UnitSurfDef(UInt_t iParam) const;
155  // units and names for position strings (r, rphi, phi, x, y, z)
156  TString ToMumMuRad(const TString &pos) const;
157  TString Name(const TString &pos) const;
158  TString NamePos(UInt_t iPos) const; //0-2 are x, y, z
159  TString DelName(const TString &pos) const;// { return "#Delta"+Name(pos);}
160  TString DelNameU(const TString &pos) const { return DelName(pos) += Unit(pos);}
161  TString Unit(const TString &pos) const;
162 
163  TString DeltaPos(const TString &pos, const TString &tree /* = PosT()*/) const;// delta position to OrgPosT, depending on pos DelPhi,DelRphi,DelPos(0,..) etc.
164  TString SelIs1D() const;
165  TString SelIs2D() const;
166 
167  // tree names
168  TString OrgPosT() const { return fOrgPos + Dot();} // nominal global positions
169  TString MisPosT() const { return fMisPos + Dot();} // misaligned global positions
170  TString MisParT() const { return fMisPar + Dot();} // misalignment
171  TString PosT() const { return fPos + Dot();} // aligned global positions
172  TString ParT() const { return fPar + Dot();} // remaining misalignment
173  TString MpT() const { return fMp + Dot();} // MP tree (parameter, hits,...)
174 
175  TTree* GetMainTree() {return fTree;} // use with care...
176 
177  enum {kLocX = 0, kLocY, kLocZ, kNpar = 6}; // number of parameters we have...
178  protected:
179 
180  private:
181  MillePedeTrees();
182  // utils
183  TTree* CreateTree(const char *fileName, const TString &treeNameAdd);
184 /* TString RemoveHistName(TString &option) const; */
185 
186  // data members
187  TTree *fTree;
188 
189  // tree names
190  TString fOrgPos; // absolute original positions from xml/input DB
191  TString fMisPos; // absolute positions with misalignment applied
192  TString fMisPar; // misalignment parameters
193  TString fPos; // positions after alignment
194  TString fPar; // remaining misalign paramters after alignment (was: alignment parameters)
195  TString fMp; // specials for/from MillePede
196 
197  // special seetings
198  bool fUseSignedR; // if true, Rpos will have sign of y
199  bool fBowsParameters; //true: pede parameter names and titles to 'bows', false: rigid body
200  bool fSurfDefDeltaBows; // true: SurfaceDeformation values as is, otherwise bowMean+Delta and bowMean-Delta
201 };
202 #endif
personalPlayback.level
level
Definition: personalPlayback.py:22
interactiveExample.ui
ui
Definition: interactiveExample.py:13
MillePedeTrees::SubDetId
TString SubDetId() const
Definition: MillePedeTrees.h:89
MillePedeTrees::YPos
TString YPos() const
Definition: MillePedeTrees.h:36
MillePedeTrees::Div
TString Div() const
Definition: MillePedeTrees.h:120
RandomServiceHelper.t2
t2
Definition: RandomServiceHelper.py:257
MillePedeTrees::PosT
TString PosT() const
Definition: MillePedeTrees.h:171
MillePedeTrees::ParT
TString ParT() const
Definition: MillePedeTrees.h:172
MillePedeTrees::ParSiOk
TString ParSiOk(UInt_t iParam) const
MillePedeTrees::ZPar
TString ZPar() const
Definition: MillePedeTrees.h:60
MillePedeTrees::DelNameU
TString DelNameU(UInt_t iParam) const
Definition: MillePedeTrees.h:149
MillePedeTrees::DelRphi
TString DelRphi(const TString &tree) const
Definition: MillePedeTrees.h:84
MillePedeTrees::DelPos
TString DelPos(UInt_t ui, const TString &tree) const
Definition: MillePedeTrees.h:82
mps_fire.i
i
Definition: mps_fire.py:355
MillePedeTrees::BetaSi
TString BetaSi(const TString &tree) const
Definition: MillePedeTrees.h:72
MillePedeTrees::Bracket
TString Bracket(UInt_t ui) const
Definition: MillePedeTrees.h:130
MillePedeTrees::Fun
TString Fun(const char *fun, const char *s) const
Definition: MillePedeTrees.h:138
MillePedeTrees
Definition: MillePedeTrees.h:16
MillePedeTrees::SetSurfDefDeltaBows
bool SetSurfDefDeltaBows(bool deltaBows)
Definition: MillePedeTrees.h:44
f
double f[11][100]
Definition: MuScleFitUtils.cc:78
MillePedeTrees::NamePede
TString NamePede(UInt_t iParam) const
MillePedeTrees::DelPhi
TString DelPhi(const TString &tree) const
Definition: MillePedeTrees.h:85
MillePedeTrees::Alpha
TString Alpha() const
Definition: MillePedeTrees.h:61
MillePedeTrees::Int
TString Int(UInt_t ui) const
Definition: MillePedeTrees.h:125
MillePedeTrees::UnitSurfDef
TString UnitSurfDef(UInt_t iParam) const
MillePedeTrees::Mal
TString Mal() const
Definition: MillePedeTrees.h:119
tree
Definition: tree.py:1
MillePedeTrees::DeformValue
TString DeformValue(UInt_t i, const TString &whichOne) const
MillePedeTrees::YParSi
TString YParSi(const TString &tree) const
Definition: MillePedeTrees.h:69
MillePedeTrees::Beta
TString Beta() const
Definition: MillePedeTrees.h:62
pos
Definition: PixelAliasList.h:18
singleTopDQM_cfi.select
select
Definition: singleTopDQM_cfi.py:50
MillePedeTrees::GetMainTree
TTree * GetMainTree()
Definition: MillePedeTrees.h:175
MillePedeTrees::YPar
TString YPar() const
Definition: MillePedeTrees.h:59
MillePedeTrees::OrL
TString OrL() const
Definition: MillePedeTrees.h:122
MillePedeTrees::ParSi
TString ParSi(const TString &tree, UInt_t ui) const
MillePedeTrees::kNpar
Definition: MillePedeTrees.h:177
MillePedeTrees::SelIs1D
TString SelIs1D() const
MillePedeTrees::Valid
TString Valid(UInt_t iParam) const
MillePedeTrees::Flt
TString Flt(Float_t f) const
Definition: MillePedeTrees.h:126
MillePedeTrees::HitsX
TString HitsX() const
Definition: MillePedeTrees.h:110
MillePedeTrees::Min
TString Min() const
Definition: MillePedeTrees.h:118
MillePedeTrees::OrgPosT
TString OrgPosT() const
Definition: MillePedeTrees.h:168
MillePedeTrees::kLocZ
Definition: MillePedeTrees.h:177
MillePedeFileConverter_cfg.fileName
fileName
Definition: MillePedeFileConverter_cfg.py:32
MillePedeTrees::ZParSi
TString ZParSi() const
Definition: MillePedeTrees.h:106
MillePedeTrees::kLocX
Definition: MillePedeTrees.h:177
MillePedeTrees::YParSi
TString YParSi() const
Definition: MillePedeTrees.h:105
fileinputsource_cfi.option
option
Definition: fileinputsource_cfi.py:87
runTheMatrix.opt
opt
Definition: runTheMatrix.py:280
MillePedeTrees::kLocY
Definition: MillePedeTrees.h:177
MillePedeTrees::Theta
TString Theta(const TString &tree) const
MillePedeTrees::DelNameU
TString DelNameU(const TString &pos) const
Definition: MillePedeTrees.h:160
MillePedeTrees::Bracket
TString Bracket(const char *s) const
Definition: MillePedeTrees.h:132
MillePedeTrees::DelPhi
TString DelPhi(const TString &tree1, const TString &tree2) const
MillePedeTrees::GammaSi
TString GammaSi() const
Definition: MillePedeTrees.h:109
MillePedeTrees::Name
TString Name(UInt_t iParam) const
MillePedeTrees::Label
TString Label(UInt_t iParam) const
MillePedeTrees::Pos
TString Pos() const
Definition: MillePedeTrees.h:33
MillePedeTrees::NamePos
TString NamePos(UInt_t iPos) const
alignCSCRings.s
s
Definition: alignCSCRings.py:92
MillePedeTrees::HieraLev
TString HieraLev(const TString &tree, Int_t level) const
Definition: MillePedeTrees.h:91
MillePedeTrees::Paren
TString Paren() const
Definition: MillePedeTrees.h:133
MillePedeTrees::CreateHistProf
TProfile * CreateHistProf(const char *expX, const char *expY, const char *select, const char *hDef="", Option_t *opt="")
RandomServiceHelper.t1
t1
Definition: RandomServiceHelper.py:256
MillePedeTrees::ToMumMuRadPede
TString ToMumMuRadPede(UInt_t iParam) const
MillePedeTrees::Cor
TString Cor(UInt_t iParam) const
MillePedeTrees::DelName
TString DelName(UInt_t iParam) const
Definition: MillePedeTrees.h:148
MillePedeTrees::Dot
TString Dot() const
Definition: MillePedeTrees.h:116
MillePedeTrees::Abs
TString Abs(const char *s) const
Definition: MillePedeTrees.h:136
MillePedeTrees::XParSi
TString XParSi(const TString &tree) const
Definition: MillePedeTrees.h:68
MillePedeTrees::MpT
TString MpT() const
Definition: MillePedeTrees.h:173
MillePedeTrees::MisParT
TString MisParT() const
Definition: MillePedeTrees.h:170
MillePedeTrees::Gamma
TString Gamma() const
Definition: MillePedeTrees.h:63
corrVsCorr.selection
selection
main part
Definition: corrVsCorr.py:100
MillePedeTrees::ToMumMuRad
TString ToMumMuRad(UInt_t iParam) const
Definition: MillePedeTrees.h:142
MillePedeTrees::XPos
TString XPos() const
Definition: MillePedeTrees.h:35
MillePedeTrees::fBowsParameters
bool fBowsParameters
Definition: MillePedeTrees.h:199
MillePedeTrees::RPos
TString RPos(const TString &tree) const
MillePedeTrees::PreSi
TString PreSi(UInt_t iParam) const
MillePedeTrees::XParSi
TString XParSi() const
Definition: MillePedeTrees.h:104
MillePedeTrees::DeltaPos
TString DeltaPos(const TString &pos, const TString &tree) const
MillePedeTrees::SetUseSignedR
bool SetUseSignedR(bool use=true)
Definition: MillePedeTrees.h:42
MillePedeTrees::MisPosT
TString MisPosT() const
Definition: MillePedeTrees.h:169
MillePedeTrees::CreateHist2D
TH2 * CreateHist2D(const char *expX, const char *expY, const char *select, const char *hDef="", Option_t *opt="")
MillePedeTrees::fPar
TString fPar
Definition: MillePedeTrees.h:194
MillePedeTrees::Int
TString Int(Int_t i) const
Definition: MillePedeTrees.h:124
MillePedeTrees::CreateHist
TH1 * CreateHist(const char *exp, const char *select, const char *hDef="", Option_t *opt="")
MillePedeTrees::fOrgPos
TString fOrgPos
Definition: MillePedeTrees.h:190
MillePedeTrees::fPos
TString fPos
Definition: MillePedeTrees.h:193
MillePedeTrees::HieraLev
TString HieraLev(Int_t level) const
Definition: MillePedeTrees.h:93
MillePedeTrees::fMisPos
TString fMisPos
Definition: MillePedeTrees.h:191
MillePedeTrees::AndL
TString AndL() const
Definition: MillePedeTrees.h:121
MillePedeTrees::CreateTree
TTree * CreateTree(const char *fileName, const TString &treeNameAdd)
MillePedeTrees::AlphaSi
TString AlphaSi(const TString &tree) const
Definition: MillePedeTrees.h:71
MillePedeTrees::Phi
TString Phi(const TString &tree) const
MillePedeTrees::DiffPar
TString DiffPar(const TString &t1, const TString &t2, UInt_t iPar) const
Definition: MillePedeTrees.h:64
MillePedeTrees::fTree
TTree * fTree
Definition: MillePedeTrees.h:187
MillePedeTrees::RPos2
TString RPos2(const TString &tree) const
MillePedeTrees::SetBowsParameters
bool SetBowsParameters(bool use=true)
Definition: MillePedeTrees.h:43
MillePedeTrees::NameSurfDef
TString NameSurfDef(UInt_t iParam) const
MillePedeTrees::Par
TString Par() const
Definition: MillePedeTrees.h:56
MillePedeTrees::AlphaSi
TString AlphaSi() const
Definition: MillePedeTrees.h:107
MillePedeTrees::AnyFreePar
TString AnyFreePar() const
MillePedeTrees::NumDeformValues
TString NumDeformValues(const TString &whichOne) const
visDQMUpload.buf
buf
Definition: visDQMUpload.py:154
MillePedeTrees::CreateGraph
TGraph * CreateGraph(const char *expX, const char *expY, const char *select, Option_t *option="")
MillePedeTrees::UnitPede
TString UnitPede(UInt_t iParam) const
MillePedeTrees::Unit
TString Unit(UInt_t iParam) const
Definition: MillePedeTrees.h:150
MillePedeTrees::Pos
TString Pos(UInt_t ui) const
Definition: MillePedeTrees.h:34
MillePedeTrees::AlignableTypeId
TString AlignableTypeId() const
Definition: MillePedeTrees.h:90
MillePedeTrees::fMisPar
TString fMisPar
Definition: MillePedeTrees.h:192
MillePedeTrees::Sqrt
TString Sqrt(const char *s) const
Definition: MillePedeTrees.h:139
MillePedeTrees::HitsY
TString HitsY() const
Definition: MillePedeTrees.h:111
MillePedeTrees::~MillePedeTrees
virtual ~MillePedeTrees()
MillePedeTrees::DelRphi
TString DelRphi(const TString &tree1, const TString &tree2) const
MillePedeTrees::SelIs2D
TString SelIs2D() const
MillePedeTrees::DelR
TString DelR(const TString &tree1, const TString &tree2) const
MillePedeTrees::PhiSwaps
TString PhiSwaps(double swapAround, const TString &tree1, const TString &tree2) const
MillePedeTrees::OrgPos
TString OrgPos(const TString &pos) const
MillePedeTrees::MillePedeTrees
MillePedeTrees()
MillePedeTrees::Diff
TString Diff(UInt_t iParam) const
MillePedeTrees::Draw
TH1 * Draw(const char *exp, const char *selection, const char *hDef="", Option_t *opt="")
MillePedeTrees::Ket
TString Ket() const
Definition: MillePedeTrees.h:129
MillePedeTrees::fMp
TString fMp
Definition: MillePedeTrees.h:195
MillePedeTrees::GammaSi
TString GammaSi(const TString &tree) const
Definition: MillePedeTrees.h:73
MillePedeTrees::Fixed
TString Fixed(UInt_t iParam, bool isFixed=true) const
JetChargeProducer_cfi.exp
exp
Definition: JetChargeProducer_cfi.py:6
MillePedeTrees::fSurfDefDeltaBows
bool fSurfDefDeltaBows
Definition: MillePedeTrees.h:200
MillePedeTrees::Bracket
TString Bracket(Int_t i) const
Definition: MillePedeTrees.h:131
MillePedeTrees::Thesis
TString Thesis() const
Definition: MillePedeTrees.h:134
MillePedeTrees::Par
TString Par(UInt_t ui) const
Definition: MillePedeTrees.h:57
MillePedeTrees::DelPos
TString DelPos(UInt_t ui, const TString &tree1, const TString &tree2) const
MillePedeTrees::Bra
TString Bra() const
Definition: MillePedeTrees.h:128
MillePedeTrees::fUseSignedR
bool fUseSignedR
Definition: MillePedeTrees.h:198
MillePedeTrees::Parenth
TString Parenth(const char *s) const
Definition: MillePedeTrees.h:135
MillePedeTrees::XPar
TString XPar() const
Definition: MillePedeTrees.h:58
MillePedeTrees::DelR
TString DelR(const TString &tree) const
Definition: MillePedeTrees.h:83
MillePedeTrees::ZPos
TString ZPos() const
Definition: MillePedeTrees.h:37
MillePedeTrees::Plu
TString Plu() const
Definition: MillePedeTrees.h:117
MillePedeTrees::ZParSi
TString ZParSi(const TString &tree) const
Definition: MillePedeTrees.h:70
MillePedeTrees::BetaSi
TString BetaSi() const
Definition: MillePedeTrees.h:108
MillePedeTrees::ToMumMuRadSurfDef
TString ToMumMuRadSurfDef(UInt_t iParam) const