You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: PWGCF/MultiparticleCorrelations/Tasks/multiparticleCorrelationsMei.cxx
+22-15Lines changed: 22 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,7 @@
43
43
44
44
#include<Rtypes.h>
45
45
46
+
#include<array>
46
47
#include<cmath>
47
48
#include<cstddef>
48
49
#include<cstdint>
@@ -187,37 +188,37 @@ struct MultiparticleCorrelationsMei // this name is used in lower-case format to
187
188
// *) Define and initialize all data members to be called in the main process* functions:
188
189
// **) Task configuration:
189
190
structTaskConfiguration {
190
-
boolfProcess[eProcess_N] = {false}; // Set what to process. See enum EProcess for full description. Set via implicit variables within a PROCESS_SWITCH clause.
191
-
boolfDryRun = false; // book all histos and run without filling and calculating anything
192
-
} tc; // you have to prepend "tc." for all objects name in this group later in the code
191
+
std::array<bool, eProcess_N> fProcess{false}; // Set what to process. See enum EProcess for full description. Set via implicit variables within a PROCESS_SWITCH clause.
192
+
boolfDryRun = false; // book all histos and run without filling and calculating anything
193
+
} tc; // you have to prepend "tc." for all objects name in this group later in the code
193
194
194
195
// **) Particle histograms:
195
196
structParticleHistograms {
196
-
TList* fParticleHistogramsList = NULL; //!<! list to hold all control particle histograms
Configurable<bool> doGenEventSelection{"doGenEventSelection", true, "use event selections when performing closure test for the gen events"};
128
+
Configurable<bool> doClosureTestPureMC{"doClosureTestPureMC", false, "fill regular ClosureTest histograms without event or reconstructed-trigger selection, using MC vertex z and centrality 0.05; keep truth-particle selections"};
0 commit comments