Skip to content
Snippets Groups Projects
Commit 593f6658 authored by Brian Andrew Cole's avatar Brian Andrew Cole
Browse files

Add boolean to control application of FADC corrections

parent 15ff41bf
No related branches found
No related tags found
No related merge requests found
......@@ -51,6 +51,8 @@ ZdcAnalysisTool::ZdcAnalysisTool(const std::string& name)
declareProperty("ForceCalibRun", m_forceCalibRun = -1); // last run of Pb+Pb 2015
declareProperty("ForceCalibLB", m_forceCalibLB = 814); // last LB of Pb+Pb 2015
declareProperty("DoFADCCorr", m_doFADCCorr = false);
// The following parameters are primarily used for the "default" configuration, but also may be
// use to modify/tailor other configurations
//
......
......@@ -65,7 +65,6 @@ public:
double getTriggerEfficiency(int side);
double getTriggerEfficiencyUncertainty(int side);
bool m_doTimeCalib;
const ZDCDataAnalyzer* getDataAnalyzer() {return m_zdcDataAnalyzer.get();}
......@@ -151,9 +150,11 @@ private:
const xAOD::ZdcModuleContainer* m_zdcSums {nullptr};
bool m_flipEMDelay;
unsigned int m_lowGainMode;
bool m_combineDelay;
bool m_doCalib;
bool m_doTrigEff;
bool m_combineDelay{false};
bool m_doCalib{false};
bool m_doTrigEff{false};
bool m_doTimeCalib{false};
bool m_doFADCCorr{false};
int m_forceCalibRun;
int m_forceCalibLB;
std::string m_calibVersion;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment