- bouchet's home page
- Posts
- 2016
- 2015
- December (1)
- November (3)
- October (2)
- September (2)
- August (2)
- June (2)
- April (5)
- March (2)
- February (3)
- January (2)
- 2014
- December (2)
- November (2)
- October (3)
- September (2)
- August (3)
- July (1)
- June (3)
- May (6)
- April (6)
- March (1)
- February (2)
- January (1)
- 2013
- December (2)
- November (3)
- October (3)
- September (4)
- August (1)
- July (1)
- May (4)
- April (6)
- March (4)
- February (3)
- 2012
- 2011
- December (2)
- November (2)
- October (4)
- September (1)
- August (2)
- July (6)
- June (2)
- May (3)
- April (3)
- March (2)
- 2010
- 2009
- December (2)
- November (1)
- October (3)
- September (1)
- August (1)
- July (1)
- June (2)
- April (1)
- March (2)
- February (2)
- January (1)
- 2008
- My blog
- Post new blog entry
- All blogs
details about TCFIT
in
void TCFitV0::Test(int mode)
constraints can be added to the fit :
if (mode==1) dat.FixPar(kCNRJ);
As far as I know, 2 constraints can be added
- a constraint a kcnrj :
dat.FixPar(kCNRJ)
2. a constraint on klen2
dat.FixPar(kLEN_2)
Here the name are misleading since kCNRJ could refer to a constraint based on the mass, whereas kLEN_2 on the decay length
test 1 : kCNRJ fixed
kLEN_2 fixed
parameters used in TCFIT
TkPars &operator+=(const TkPars &a); /// point double dca,z; /// angle between track direction and X-axis in xy plane double phi; /// signed invert pt [sign = sign(-qB)] double ptin; /// tangent of the track momentum dip angle double tanl; /// signed curvature [sign = sign(-qB)] double curv; /// Z component magnetic field in units Pt(Gev) = Hz * RCurv(cm) double hz; /// Mass of track double mass; }; class TCFitV0 : public TCFitData { public: enum eTCFitV0 { kDCA_0= 0,kZ_0 = 1,kPHI_0= 2,kPTIN_0= 3,kTANL_0= 4 , kDCA_1=10,kZ_1 =11,kPHI_1=12,kPTIN_1=13,kTANL_1=14 , kLEN_0=20,kLEN_1=21,kLEN_2=22 , kCX_0 =30,kCY_0 =31,kCZ_0 =32 , kCX_1 =33,kCY_1 =34,kCZ_1 =35 , kCNRJ =36 };
It looks from the names of the parameters that they're the parameters tracks (5)
KPTIN_0 : 1/pT of the first track
1/KPTIN_0
When I compare to the pT of the same daughter from the TLorentzVector, it could match (modulo a factor 10)
KPHI_0
When I compare to the phi angle of the same daughter from the TLorentzVector :
10/25 : UPDATE : the current version of my DNP talk is here
version with Gang's comments : here
Groups:
- bouchet's blog
- Login or register to post comments