File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ struct HfTaskElectronWeakBoson {
119119
120120 // KFParticle
121121 Configurable<int > kfConstructMethod{" kfConstructMethod" , 2 , " KF Construct Method" };
122- Configurable<int > ChiSqNdfMax{ " ChiSqNdfMax " , 10 , " Chi2 Max for mass reco by KF particle" };
122+ Configurable<int > chiSqNdfMax{ " chiSqNdfMax " , 10 , " Chi2 Max for mass reco by KF particle" };
123123
124124 // CCDB service object
125125 Service<o2::ccdb::BasicCCDBManager> ccdb;
@@ -348,11 +348,11 @@ struct HfTaskElectronWeakBoson {
348348 zeeKF.SetConstructMethod (kfConstructMethod);
349349 zeeKF.Construct (electronPairs, 2 );
350350 // LOG(info) << "Invarimass cal by KF particle Chi2/NDF = " << zeeKF.GetChi2()/zeeKF.GetNDF();
351- float ChiSqNdf = zeeKF.GetChi2 () / zeeKF.GetNDF ();
351+ float chiSqNdf = zeeKF.GetChi2 () / zeeKF.GetNDF ();
352352 if (zeeKF.GetNDF () < 1 ) {
353353 continue ;
354354 }
355- if (ChiSqNdf > ChiSqNdfMax ) {
355+ if (chiSqNdf > chiSqNdfMax ) {
356356 continue ;
357357 }
358358 float massZee, massZeeErr;
You can’t perform that action at this time.
0 commit comments