|
28 | 28 | /// |
29 | 29 | /// \author Alberto Calivà <alberto.caliva@cern.ch> |
30 | 30 |
|
| 31 | +#include "Common/DataModel/MCParticles.h" |
| 32 | +#include "Common/DataModel/McCollisionExtra.h" |
| 33 | + |
31 | 34 | #include "Framework/AnalysisTask.h" |
32 | | -#include "Framework/runDataProcessing.h" |
33 | 35 | #include "Framework/Configurable.h" |
34 | 36 | #include "Framework/HistogramRegistry.h" |
35 | 37 | #include "Framework/InitContext.h" |
36 | 38 | #include "Framework/Logger.h" |
37 | 39 | #include "Framework/OutputObjHeader.h" |
38 | | -#include "Common/DataModel/McCollisionExtra.h" |
39 | | -#include "Common/DataModel/MCParticles.h" |
| 40 | +#include "Framework/runDataProcessing.h" |
40 | 41 |
|
41 | 42 | #include <Math/Boost.h> |
42 | 43 | #include <Math/Vector3D.h> |
43 | 44 | #include <Math/Vector4D.h> |
| 45 | +#include <TH1.h> |
44 | 46 | #include <TTree.h> |
45 | 47 |
|
46 | | -#include <TH1.h> |
47 | 48 | #include <algorithm> |
48 | 49 | #include <cmath> |
49 | 50 | #include <vector> |
@@ -74,8 +75,8 @@ struct CoalescenceTreeProducer { |
74 | 75 |
|
75 | 76 | OutputObj<TTree> treeBoundState{"treeBoundState"}; |
76 | 77 |
|
77 | | - int64_t eventID;// Event ID |
78 | | - int64_t idB1, idB2, idB3;// MC particle IDs of the constituent baryons |
| 78 | + int64_t eventID; // Event ID |
| 79 | + int64_t idB1, idB2, idB3; // MC particle IDs of the constituent baryons |
79 | 80 |
|
80 | 81 | int pdgB1, pdgB2, pdgB3; |
81 | 82 | int chargeB1, chargeB2, chargeB3; |
@@ -670,7 +671,5 @@ struct CoalescenceTreeProducer { |
670 | 671 | WorkflowSpec defineDataProcessing(ConfigContext const& cfgc) |
671 | 672 | { |
672 | 673 | return WorkflowSpec{ |
673 | | - adaptAnalysisTask<CoalescenceTreeProducer>(cfgc) |
674 | | - }; |
| 674 | + adaptAnalysisTask<CoalescenceTreeProducer>(cfgc)}; |
675 | 675 | } |
676 | | - |
0 commit comments