88// In applying this license CERN does not waive the privileges and immunities
99// granted to it by virtue of its status as an Intergovernmental Organization
1010// or submit itself to any jurisdiction.
11- // / student-o2physics.cxx <name of your task>
12- // / \brief <some comment>
13- // / Hu,Pengchong <[email protected] >1411
15- // O2:
1612#include " Common/DataModel/Centrality.h"
1713#include " Common/DataModel/EventSelection.h"
1814#include " Common/DataModel/Multiplicity.h"
1915#include " Common/DataModel/TrackSelectionTables.h" // needed for aod::TracksDCA table
2016
21- #include " Framework/AnalysisDataModel.h"
22- #include " Framework/AnalysisTask.h"
23- #include " Framework/DataTypes.h"
24- #include " Framework/runDataProcessing.h"
2517#include < CCDB/BasicCCDBManager.h>
26- // ...
18+ #include < Framework/AnalysisDataModel.h>
19+ #include < Framework/AnalysisTask.h>
20+ #include < Framework/DataTypes.h>
21+ #include < Framework/runDataProcessing.h>
22+
23+ #include < TGrid.h>
24+ #include < TH1D.h>
25+ #include < TSystem.h>
26+
27+ #include < cstring>
28+ #include < string>
29+ #include < vector>
2730
2831using namespace o2 ;
2932using namespace o2 ::framework;
30- // ...
3133
3234// Definitions of join tables for Run 3 analysis:
3335using EventSelection = soa::Join<aod::EvSels, aod::Mults, aod::CentFT0As, aod::CentFT0Cs, aod::CentFT0Ms, aod::CentFV0As, aod::CentNTPVs>;
@@ -40,20 +42,8 @@ using TracksRecSim = soa::Join<aod::Tracks, aod::TracksExtra, aod::TracksDCA, ao
4042using TrackRecSim = soa::Join<aod::Tracks, aod::TracksExtra, aod::TracksDCA, aod::TrackSelection, aod::McTrackLabels>::iterator;
4143using TracksSim = aod::McParticles;
4244using TrackSim = aod::McParticles::iterator;
43- // ...
44-
45- // *) ROOT and C++ include's:
46- #include < TGrid.h>
47- #include < TH1D.h>
48- #include < TSystem.h>
49-
50- #include < cstring>
51- #include < string>
52- #include < vector>
53- // ...
5445
5546using namespace std ;
56- // ...
5747
5848// *) Define enums:
5949enum eRecSim { eRec = 0 ,
0 commit comments