@@ -1331,6 +1331,7 @@ struct AnalysisSameEventPairing {
13311331 Configurable<std::string> fConfigAddJSONHistograms {" cfgAddJSONHistograms" , " " , " Histograms in JSON format" };
13321332 Configurable<bool > fConfigQA {" cfgQA" , true , " If true, fill output histograms" };
13331333 Configurable<bool > fConfigAmbiguousMuonHistograms {" cfgAmbiguousMuonHistograms" , true , " If true, fill ambiguous histograms" };
1334+ Configurable<float > fConfigDileptonTauxyCut {" cfgDileptonTauxyCut" , -10000 , " Tauxy cut for dileptons used to select the non-prompt Jpsi" };
13341335
13351336 // option for TR pair fill
13361337 Configurable<bool > fConfigTRPairs {" cfgFillTRPairs" , false , " If true, fill Track rotation pairs" };
@@ -1343,8 +1344,6 @@ struct AnalysisSameEventPairing {
13431344 Configurable<std::string> geoPath{" geoPath" , " GLO/Config/GeometryAligned" , " Path of the geometry file" };
13441345 Configurable<std::string> GrpLhcIfPath{" grplhcif" , " GLO/Config/GRPLHCIF" , " Path on the CCDB for the GRPLHCIF object" };
13451346 Configurable<std::string> efficiencyPath{" effHistPath" , " Users/z/zhxiong/efficiency" , " Path on the CCDB for the efficiency histograms" };
1346- Configurable<float > fConfigDileptonTauxyCut {" cfgDileptonTauxyCut" , -10000 , " Tauxy cut for dileptons used to select the non-prompt Jpsi" };
1347-
13481347 } fConfigCCDB ;
13491348
13501349 struct : ConfigurableGroup {
@@ -1980,6 +1979,7 @@ struct AnalysisSameEventPairing {
19801979 if (VarManager::fgValues[VarManager::kVertexingTauxyProjectedPoleJPsiMass ] < fConfigDileptonTauxyCut ) {
19811980 continue ;
19821981 }
1982+
19831983 dielectronList (event.globalIndex (), VarManager::fgValues[VarManager::kMass ],
19841984 VarManager::fgValues[VarManager::kPt ], VarManager::fgValues[VarManager::kEta ], VarManager::fgValues[VarManager::kPhi ],
19851985 t1.sign () + t2.sign (), twoTrackFilter, 0 );
0 commit comments