@@ -91,7 +91,7 @@ struct StrangeCascTrack {
9191 ConfigurableAxis axisEta{" axisEta" , {102 , -2.01 , 2.01 }, " #eta" };
9292 ConfigurableAxis axisDCAxy{" axisDCAxy" , {500 , 0 ., 0.5 }, " cm" };
9393 ConfigurableAxis axisDCAz{" axisDCAz" , {500 , 0 ., 0.5 }, " cm" };
94- ConfigurableAxis axisPt{" axisPt" , {VARIABLE_WIDTH, 0 ,0.5 ,1 , 1.5 ,2 , 2.5 ,3 , 3.5 ,4 , 5 , 10 }, " p_{T} (GeV/c)" };
94+ ConfigurableAxis axisPt{" axisPt" , {VARIABLE_WIDTH, 0 , 0.5 , 1 , 1.5 , 2 , 2.5 , 3 , 3.5 , 4 , 5 , 10 }, " p_{T} (GeV/c)" };
9595 ConfigurableAxis axisMult{" axisMult" , {VARIABLE_WIDTH, 0 .0f , 5.0 , 10 .0f , 20 .0f , 30 .0f , 40 .0f , 50 .0f , 70 .0f , 100 .0f }, " FT0 mult %" };
9696 ConfigurableAxis axisOmegaMass{" axisOmegaMass" , {2000 , 1.6 , 1.8 }, " #Omega M_{inv} (GeV/c^{2})" };
9797 ConfigurableAxis axisXiMass{" axisXiMass" , {2000 , 1.2 , 1.4 }, " #Xi M_{inv} (GeV/c^{2})" };
@@ -112,7 +112,7 @@ struct StrangeCascTrack {
112112 } eventCuts;
113113
114114 // cascade selections
115- struct : ConfigurableGroup {
115+ struct : ConfigurableGroup {
116116 std::string prefix = " cascadeSelections" ;
117117 Configurable<bool > cutDoPropagateDCA{" cutDoPropagateDCA" , false , " choose events with sel8" };
118118 Configurable<float > cutPropDCAtoPVxy{" cutPropDCAtoPVxy" , 0 .02f , " max cascade dca to PV in xy - propagated" };
@@ -203,21 +203,21 @@ struct StrangeCascTrack {
203203 } else {
204204 passedAllSels = false ;
205205 }
206- // *
206+ // *
207207 if (!eventCuts.doITSTPCVertexEventCut || collision.selection_bit (o2::aod::evsel::kIsVertexITSTPC )) {
208208 if (fillHists)
209209 histos.fill (HIST (" Rec-Events/EvFilter" ), 5.5 );
210210 } else {
211211 passedAllSels = false ;
212212 }
213- // *
213+ // *
214214 if (!eventCuts.doNoCollInRofStandardCut || collision.selection_bit (o2::aod::evsel::kNoCollInRofStandard )) {
215215 if (fillHists)
216216 histos.fill (HIST (" Rec-Events/EvFilter" ), 6.5 );
217217 } else {
218218 passedAllSels = false ;
219219 }
220- // *
220+ // *
221221 if (!eventCuts.doTimeRangeStandardCut || collision.selection_bit (o2::aod::evsel::kNoCollInTimeRangeStandard )) {
222222 if (fillHists)
223223 histos.fill (HIST (" Rec-Events/EvFilter" ), 7.5 );
@@ -1023,8 +1023,8 @@ struct StrangeCascTrack {
10231023 void processDerivedMCGen (soa::Join<aod::StraMCCollisions, aod::StraMCCollMults> const & genColls, DerMCGenCascades const & genCascs, DerMCRecCollisions const & recColls)
10241024 {
10251025 for (auto const & genColl : genColls) {
1026- if (eventCuts.doINELMCGen && genColl.multMCNParticlesEta10 () <=0 )
1027- continue ; // skip zero gen mult events
1026+ if (eventCuts.doINELMCGen && genColl.multMCNParticlesEta10 () <= 0 )
1027+ continue ; // skip zero gen mult events
10281028 histos.fill (HIST (" MC/Gen/EvCounter" ), 0.5 ); // generated events statistics
10291029 double genMult = genColl.multMCNParticlesEta05 ();
10301030 histos.fill (HIST (" MC/Gen/Mult" ), genMult);
@@ -1085,8 +1085,8 @@ struct StrangeCascTrack {
10851085 recoCounter = true ;
10861086 }
10871087 if (biggestNContribs < recColl.multPVTotalContributors ()) {
1088- biggestNContribs = recColl.multPVTotalContributors ();
1089- bestCentrality = (doProcessIons) ? recColl.centFT0C () : recColl.centFT0M ();
1088+ biggestNContribs = recColl.multPVTotalContributors ();
1089+ bestCentrality = (doProcessIons) ? recColl.centFT0C () : recColl.centFT0M ();
10901090 }
10911091 // look at generated cascades within reconstructed events
10921092 for (auto const & casc : slicedGenCascs) {
@@ -1125,8 +1125,8 @@ struct StrangeCascTrack {
11251125 }
11261126 // fill centrality exactly once for each rec gen event
11271127 if (biggestNContribs >= 0 ) {
1128- histos.fill (HIST (" MC/EvRec/MultCent" ), bestCentrality, genMult);
1129- histos.fill (HIST (" MC/EvRec/Cent" ), bestCentrality);
1128+ histos.fill (HIST (" MC/EvRec/MultCent" ), bestCentrality, genMult);
1129+ histos.fill (HIST (" MC/EvRec/Cent" ), bestCentrality);
11301130 }
11311131 }
11321132 }
@@ -1155,4 +1155,4 @@ WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
11551155 return WorkflowSpec{
11561156 adaptAnalysisTask<StrangeCascTrack>(cfgc),
11571157 };
1158- }
1158+ }
0 commit comments