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
// DECLARE_SOA_COLUMN(HadCorrEnergy, hadcorrEnergy, float); //! cluster energy (GeV) after hadronic correction
32
32
33
33
// hadronic corrected energy values
34
-
DECLARE_SOA_COLUMN(HadCorrOneTrack1, hadCorrOneTrack1, float); //! with hadronic correction fraction (100%) for one matched track
35
-
DECLARE_SOA_COLUMN(HadCorrOneTrack2, hadCorrOneTrack2, float); //! with hadronic correction fraction (70%) for one matched track - systematic studies
36
-
DECLARE_SOA_COLUMN(HadCorrAllTracks1, hadCorrAllTracks1, float); //! with hadronic correction fraction (100%) for all matched tracks
37
-
DECLARE_SOA_COLUMN(HadCorrAllTracks2, hadCorrAllTracks2, float); //! with hadronic correction fraction (70%) for all matched tracks - for systematic studies
38
-
34
+
DECLARE_SOA_COLUMN(HadCorrOneTrack1, hadCorrOneTrack1, float); //! with hadronic correction fraction (100%) for one matched track
35
+
DECLARE_SOA_COLUMN(HadCorrOneTrack2, hadCorrOneTrack2, float); //! with hadronic correction fraction (70%) for one matched track - systematic studies
36
+
DECLARE_SOA_COLUMN(HadCorrAllTracks1, hadCorrAllTracks1, float); //! with hadronic correction fraction (100%) for all matched tracks
37
+
DECLARE_SOA_COLUMN(HadCorrAllTracks2, hadCorrAllTracks2, float); //! with hadronic correction fraction (70%) for all matched tracks - for systematic studies
39
38
40
39
} // namespace emcalhadroniccorrection
41
40
42
-
//Table Definitions - define what needs to be written into the tables produced by this tableproducer task
Preslice<o2::aod::EMCALMatchedTracks> perClusterMatchedTracks = o2::aod::emcalclustercell::emcalclusterId; // looking at clusterID column in the EMCALMatchedTracks for every cluster
62
+
//Configurables for Histogram Binning
63
+
Preslice<o2::aod::EMCALMatchedTracks> perClusterMatchedTracks = o2::aod::emcalclustercell::emcalclusterId; // looking at clusterID column in the EMCALMatchedTracks for every cluster
66
64
67
-
//define configurables here
65
+
//define configurables here
68
66
Configurable<int> mClusterDefinition{"clusterDefinition", 10, "cluster definition to be selected, e.g. 10=kV3Default"};
69
67
Configurable<float> minTime{"minTime", -25., "Minimum cluster time for time cut"};
70
68
Configurable<float> maxTime{"maxTime", 20., "Maximum cluster time for time cut"};
71
69
Configurable<float> minM02{"minM02", 0.1, "Minimum M02 for M02 cut"};
72
70
Configurable<float> maxM02{"maxM02", 0.9, "Maximum M02 for M02 cut"};
73
71
Configurable<float> minTrackPt{"minTrackPt", 0.15, "Minimum pT for tracks"};
74
-
Configurable<double> fHadCorr1{"HadCorr1", 1., "hadronic correction fraction for complete cluster energy subtraction for one matched track"}; //100% - default
75
-
Configurable<double> fHadCorr2{"HadCorr2", 0.7, "hadronic correction fraction for systematic studies for one matched track"}; //70%
76
-
Configurable<double> fHadCorralltrks1{"HadCorralltrks1", 1., "hadronic correction fraction for complete cluster energy subtraction for all matched tracks"}; //100% - all tracks
77
-
Configurable<double> fHadCorralltrks2{"HadCorralltrks2", 0.7, "hadronic correction fraction for systematic studies for all matched tracks"}; //70%
72
+
Configurable<double> fHadCorr1{"HadCorr1", 1., "hadronic correction fraction for complete cluster energy subtraction for one matched track"}; //100% - default
73
+
Configurable<double> fHadCorr2{"HadCorr2", 0.7, "hadronic correction fraction for systematic studies for one matched track"}; //70%
74
+
Configurable<double> fHadCorralltrks1{"HadCorralltrks1", 1., "hadronic correction fraction for complete cluster energy subtraction for all matched tracks"}; //100% - all tracks
75
+
Configurable<double> fHadCorralltrks2{"HadCorralltrks2", 0.7, "hadronic correction fraction for systematic studies for all matched tracks"}; //70%
78
76
Configurable<float> minDEta{"minDEta", 0.01, "Minimum dEta between track and cluster"};
79
77
Configurable<float> minDPhi{"minDPhi", 0.01, "Minimum dPhi between track and cluster"};
80
78
Configurable<double> fConstantSubtractionValue{"ConstantSubtractionValue", 0.236, "Value to be used for constant MIP subtraction (only applicable if using constant subtraction in M02 scheme)"};
81
79
82
-
//pT-dependent track-matching configurables
80
+
//pT-dependent track-matching configurables
83
81
Configurable<float> Eta0{"eta0", 0.04, "Param 0 in eta for pt-dependent matching"};
84
82
Configurable<float> Eta1{"eta1", 0.010, "Param 1 in eta for pt-dependent matching"};
85
83
Configurable<float> Eta2{"eta2", 2.5, "Param 2 in eta for pt-dependent matching"};
0 commit comments