Skip to content
Snippets Groups Projects
Commit d5072c20 authored by Adam Edward Barton's avatar Adam Edward Barton :speech_balloon:
Browse files

Merge branch 'timeResisLayer' into 'master'

Disable sTGC strip time offset by default

See merge request !47671
parents f1699ec6 21b73642
No related branches found
No related tags found
5 merge requests!69091Fix correlated smearing bug in JER in JetUncertainties in 22.0,!58791DataQualityConfigurations: Modify L1Calo config for web display,!51674Fixing hotSpotInHIST for Run3 HIST,!50012RecExConfig: Adjust log message levels from GetRunNumber and GetLBNumber,!47671Disable sTGC strip time offset by default
......@@ -183,6 +183,8 @@ class sTgcDigitMaker : public AthMessaging {
length corrections. Bunch crossing time is specified.
*/
bool m_doTimeCorrection;
// Flag to enable strip time offset
bool m_doTimeOffsetStrip;
//double m_timeWindowWire;
//double m_timeWindowStrip;
//double m_bunchCrossingTime;
......
......@@ -41,6 +41,7 @@ sTgcDigitMaker::sTgcDigitMaker(const sTgcHitIdHelper* hitIdHelper,
m_mdManager = mdManager;
m_doEfficiencyCorrection = doEfficiencyCorrection;
m_doTimeCorrection = true;
m_doTimeOffsetStrip = false;
//m_timeWindowPad = 30.; // TGC 29.32; // 29.32 ns = 26 ns + 4 * 0.83 ns
//m_timeWindowStrip = 30.; // TGC 40.94; // 40.94 ns = 26 ns + 18 * 0.83 ns
//m_bunchCrossingTime = 24.95; // 24.95 ns =(40.08 MHz)^(-1)
......@@ -103,8 +104,10 @@ StatusCode sTgcDigitMaker::initialize(const int channelTypes)
// Read share/sTGC_Digitization_timeArrivale.dat, containing the digit time of arrival
ATH_CHECK(readFileOfTimeArrival());
// Read share/sTGC_Digitization_timeOffsetStrip.dat
ATH_CHECK(readFileOfTimeOffsetStrip());
// Read share/sTGC_Digitization_timeOffsetStrip.dat if the the strip time correction is enable
if (m_doTimeOffsetStrip) {
ATH_CHECK(readFileOfTimeOffsetStrip());
}
return StatusCode::SUCCESS;
}
......@@ -481,7 +484,12 @@ std::unique_ptr<sTgcDigitCollection> sTgcDigitMaker::executeDigi(const sTGCSimHi
if (std::abs(stripnum - middleStrip[1]) < indexFromMiddleStrip) {
indexFromMiddleStrip = std::abs(stripnum - middleStrip[1]);
}
double strip_time = sDigitTimeStrip + getTimeOffsetStrip(indexFromMiddleStrip);
double strip_time = sDigitTimeStrip;
// Strip time response can be delayed due to the resistive layer.
// A correction would be required if the actual VMM front-end doesn't re-align the strip timing.
if (m_doTimeOffsetStrip) {
strip_time += getTimeOffsetStrip(indexFromMiddleStrip);
}
addDigit(digits.get(),newId, bctag, strip_time, charge, channelType);
......
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