Skip to content

Commit 11d0162

Browse files
committed
[PWGJE,EMCAL-850] Fix missplaced variable decleration
1 parent 1f8ca5b commit 11d0162

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

PWGJE/Tasks/emcEventSelectionQA.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,17 @@ struct EmcEventSelectionQA {
3737
// Require EMCAL cells (CALO type 1)
3838
Filter emccellfilter = aod::calo::caloType == 1;
3939

40+
const int mRun3MinNumber = 300000;
41+
4042
void init(o2::framework::InitContext const&)
4143
{
4244
using O2HistType = o2::framework::HistType;
4345
using O2Axis = o2::framework::AxisSpec;
4446

45-
const int mRun3MinNumber = 300000;
46-
4747
O2Axis matchingAxis{3, -0.5, 2.5, "Matching Status (0, 1, 2+ collisions)", "Matching status"}, // 0, no vertex,1 vertex found , 2 multiple vertices found
4848
bcAxis{4001, -0.5, 4000.5, "bcid", "BC ID"},
49-
amplitudeAxisLarge{1000, 0., 100., "amplitudeLarge", "Amplutude (GeV)"},
50-
timeAxisLarge{1500, -600, 900, "celltime", "cell time (ns)"};
49+
amplitudeAxisLarge{1000, 0., 100., "amplitudeLarge", "Amplitude (GeV)"},
50+
timeAxisLarge{1500, -600, 900, "celltime", "#it{t}_{cell} (ns)"};
5151

5252
mHistManager.add("hCollisionMatching", "Collision Status", O2HistType::kTH1F, {matchingAxis});
5353
mHistManager.add("hCollisionMatchingReadout", "Collision Status EMCAL Readout", O2HistType::kTH1F, {matchingAxis});

0 commit comments

Comments
 (0)