Skip to content

Commit efe2811

Browse files
authored
Add a refrence to emcal region
1 parent a551de2 commit efe2811

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

PWGHF/HFL/TableProducer/electronSelectionWithTpcEmcal.cxx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ struct HfElectronSelectionWithTpcEmcal {
6161
Produces<aod::HfCorrSelEl> hfElectronSelection;
6262
Produces<aod::HfMcGenSelEl> hfGenElectronSel;
6363

64+
// select the emcal or dcal acceptance
6465
enum EMCalRegion {
6566
NoAcceptance = 0,
6667
EMCalAcceptance = 1,
@@ -71,8 +72,11 @@ struct HfElectronSelectionWithTpcEmcal {
7172
KFParticle kfNonHfe;
7273
Configurable<bool> fillEmcClusterInfo{"fillEmcClusterInfo", true, "Fill histograms with EMCal cluster info before and after track match"};
7374
Configurable<bool> fillTrackInfo{"fillTrackInfo", true, "Fill histograms with Track Information info before track match"};
74-
Configurable<int> emcalRegion{"emcalRegion", 0, "Select EMCal region for filling histograms"};
7575
Configurable<bool> skipNoEmcClusters{"skipNoEmcClusters", false, "Skip events with no EMCal clusters"};
76+
77+
// select the emcal or dcal acceptance
78+
Configurable<int> emcalRegion{"emcalRegion", 0, "Select EMCal region for filling histograms"};
79+
7680
// Event Selection
7781
Configurable<float> zPvPosMax{"zPvPosMax", 10., "Maximum z of the primary vertex (cm)"};
7882
Configurable<bool> isRun3{"isRun3", true, "Data is from Run3 or Run2"};

0 commit comments

Comments
 (0)