|
13 | 13 | /// \brief task for WeakBoson (W/Z) based on electron in mid-rapidity |
14 | 14 | /// \author S. Sakai & S. Ito (Univ. of Tsukuba) |
15 | 15 | #include <vector> |
| 16 | +#include <string> |
16 | 17 |
|
17 | 18 | #include "Framework/runDataProcessing.h" |
18 | 19 | #include "Framework/AnalysisTask.h" |
@@ -84,9 +85,6 @@ struct HfTaskElectronWeakBoson { |
84 | 85 | Configurable<bool> cfgSkimmedProcessing{"cfgSkimmedProcessing", true, "Enables processing of skimmed datasets"}; |
85 | 86 | Configurable<std::string> cfgTriggerName{"cfgTriggerName", "fGammaHighPtEMCAL", "Trigger of interest (comma separated for multiple)"}; |
86 | 87 |
|
87 | | - // Zorro objects for skimmed data processing |
88 | | - Zorro zorro; |
89 | | - |
90 | 88 | // CCDB service object |
91 | 89 | Configurable<std::string> cfgCCDBPath{"cfgCCDBPath", "Users/m/mpuccio/EventFiltering/OTS/", "Path to CCDB for trigger data"}; |
92 | 90 | Service<o2::ccdb::BasicCCDBManager> ccdb; |
@@ -127,6 +125,10 @@ struct HfTaskElectronWeakBoson { |
127 | 125 | // Histogram registry: an object to hold your registrygrams |
128 | 126 | HistogramRegistry registry{"registry"}; |
129 | 127 |
|
| 128 | + // Zorro objects for skimmed data processing |
| 129 | + Zorro zorro; |
| 130 | + OutputObj<ZorroSummary> zorroSummary{"zorroSummary"}; |
| 131 | + |
130 | 132 | void init(InitContext const&) |
131 | 133 | { |
132 | 134 | // Configure CCDB |
@@ -196,9 +198,6 @@ struct HfTaskElectronWeakBoson { |
196 | 198 | registry.add("hEMCalTrigger", "EMCal trigger", kTH1F, {axisTrigger}); |
197 | 199 | } |
198 | 200 |
|
199 | | - // Zorro Summary |
200 | | - OutputObj<ZorroSummary> zorroSummary{"zorroSummary"}; |
201 | | - |
202 | 201 | bool isIsolatedCluster(const o2::aod::EMCALCluster& cluster, |
203 | 202 | const SelectedClusters& clusters) |
204 | 203 | { |
|
0 commit comments