@@ -614,7 +614,7 @@ struct TreeWriterTpcV0 {
614614
615615}; // / struct TreeWriterTpcV0
616616
617- struct TreeWriterTPCTOF {
617+ struct TreeWriterTpcTof {
618618
619619 Service<o2::ccdb::BasicCCDBManager> ccdb;
620620
@@ -647,7 +647,6 @@ struct TreeWriterTPCTOF {
647647 // / Configurables
648648 Configurable<float > nClNorm{" nClNorm" , 152 ., " Number of cluster normalization. Run 2: 159, Run 3 152" };
649649 Configurable<int > applyEvSel{" applyEvSel" , 2 , " Flag to apply rapidity cut: 0 -> no event selection, 1 -> Run 2 event selection, 2 -> Run 3 event selection" };
650- Configurable<int > applyTrkSel{" applyTrkSel" , 1 , " Flag to apply track selection: 0 -> no track selection, 1 -> track selection" };
651650 Configurable<int > trackSelection{" trackSelection" , 1 , " Track selection: 0 -> No Cut, 1 -> kGlobalTrack, 2 -> kGlobalTrackWoPtEta, 3 -> kGlobalTrackWoDCA, 4 -> kQualityTracks, 5 -> kInAcceptanceTracks" };
652651 Configurable<std::string> irSource{" irSource" , " T0VTX" , " Estimator of the interaction rate (Recommended: pp --> T0VTX, Pb-Pb --> ZNC hadronic)" };
653652 // / Triton
@@ -909,13 +908,13 @@ struct TreeWriterTPCTOF {
909908 {
910909 runStandard<false , Trks>(collision, tracks);
911910 } // / process
912- PROCESS_SWITCH (TreeWriterTPCTOF , processStandard, " Standard Samples for PID" , true );
911+ PROCESS_SWITCH (TreeWriterTpcTof , processStandard, " Standard Samples for PID" , true );
913912
914913 void processStandardWithCorrecteddEdx (Colls::iterator const & collision, soa::Filtered<TrksWithDEdxCorrection> const & tracks, aod::BCsWithTimestamps const &)
915914 {
916915 runStandard<true , TrksWithDEdxCorrection>(collision, tracks);
917916 } // / process
918- PROCESS_SWITCH (TreeWriterTPCTOF , processStandardWithCorrecteddEdx, " Standard Samples for PID with corrected dEdx" , false );
917+ PROCESS_SWITCH (TreeWriterTpcTof , processStandardWithCorrecteddEdx, " Standard Samples for PID with corrected dEdx" , false );
919918
920919 Preslice<Trks> perCollisionTracks = aod::track::collisionId;
921920 Preslice<TrksWithDEdxCorrection> perCollisionTracksWithCorrecteddEdx = aod::track::collisionId;
@@ -989,33 +988,33 @@ struct TreeWriterTPCTOF {
989988 {
990989 runWithTrQAGeneric<false , true , Trks, aod::BCsWithTimestamps>(collisions, myTracks, tracksQA, perCollisionTracks);
991990 } // / process
992- PROCESS_SWITCH (TreeWriterTPCTOF , processWithdEdxTrQA, " Samples for PID with TrackQA info" , false );
991+ PROCESS_SWITCH (TreeWriterTpcTof , processWithdEdxTrQA, " Samples for PID with TrackQA info" , false );
993992
994993 void processWithdEdxTrQAWithCorrecteddEdx (Colls const & collisions, TrksWithDEdxCorrection const & myTracks, aod::BCsWithTimestamps const &, aod::TracksQAVersion const & tracksQA)
995994 {
996995 runWithTrQAGeneric<true , true , TrksWithDEdxCorrection, aod::BCsWithTimestamps>(collisions, myTracks, tracksQA, perCollisionTracksWithCorrecteddEdx);
997996 } // / process
998- PROCESS_SWITCH (TreeWriterTPCTOF , processWithdEdxTrQAWithCorrecteddEdx, " Samples for PID with TrackQA info with corrected dEdx" , false );
997+ PROCESS_SWITCH (TreeWriterTpcTof , processWithdEdxTrQAWithCorrecteddEdx, " Samples for PID with TrackQA info with corrected dEdx" , false );
999998
1000999 void processWithTrQA (Colls const & collisions, Trks const & myTracks, MyBCTable const &, aod::TracksQAVersion const & tracksQA)
10011000 {
10021001 runWithTrQAGeneric<false , false , Trks, MyBCTable>(collisions, myTracks, tracksQA, perCollisionTracks);
10031002 } // / process
1004- PROCESS_SWITCH (TreeWriterTPCTOF , processWithTrQA, " Samples for PID with TrackQA info" , false );
1003+ PROCESS_SWITCH (TreeWriterTpcTof , processWithTrQA, " Samples for PID with TrackQA info" , false );
10051004
10061005 void processWithTrQAWithCorrecteddEdx (Colls const & collisions, TrksWithDEdxCorrection const & myTracks, MyBCTable const &, aod::TracksQAVersion const & tracksQA)
10071006 {
10081007 runWithTrQAGeneric<true , false , TrksWithDEdxCorrection, MyBCTable>(collisions, myTracks, tracksQA, perCollisionTracksWithCorrecteddEdx);
10091008 } // / process
1010- PROCESS_SWITCH (TreeWriterTPCTOF , processWithTrQAWithCorrecteddEdx, " Samples for PID with TrackQA info with correced dEdx" , false );
1009+ PROCESS_SWITCH (TreeWriterTpcTof , processWithTrQAWithCorrecteddEdx, " Samples for PID with TrackQA info with correced dEdx" , false );
10111010
10121011 void processDummy (Colls const &) {}
1013- PROCESS_SWITCH (TreeWriterTPCTOF , processDummy, " Dummy function" , false );
1012+ PROCESS_SWITCH (TreeWriterTpcTof , processDummy, " Dummy function" , false );
10141013
1015- }; // / struct TreeWriterTPCTOF
1014+ }; // / struct TreeWriterTpcTof
10161015WorkflowSpec defineDataProcessing (ConfigContext const & cfgc)
10171016{
1018- auto workflow = WorkflowSpec{adaptAnalysisTask<TreeWriterTPCTOF >(cfgc)};
1017+ auto workflow = WorkflowSpec{adaptAnalysisTask<TreeWriterTpcTof >(cfgc)};
10191018 workflow.push_back (adaptAnalysisTask<TreeWriterTpcV0>(cfgc));
10201019 return workflow;
10211020}
0 commit comments