Skip to content
Snippets Groups Projects
Commit 72c5f2d9 authored by Alexandre Laurier's avatar Alexandre Laurier Committed by Frank Winklmeier
Browse files

NSW RDO data time window for pileup

NSW RDO data time window for pileup
parent b3a89bfe
No related merge requests found
......@@ -62,6 +62,11 @@ StatusCode MM_DigitToRDO::execute(const EventContext& ctx) const
for ( unsigned int i=0 ; i<nstrips ; ++i ) {
// Set proper data time window in simulated MM RDOs
// 8BC range starting at t=200 due to peaking time
// totaling digits within t = [200, 400]
if (digit->stripResponseTime().at(i) < 200. || digit->stripResponseTime().at(i) > 400.) continue;
///
/// set the rdo id to a value consistent with the channel number
///
......
......@@ -50,6 +50,11 @@ StatusCode STGC_DigitToRDO::execute(const EventContext& ctx) const
}
for (const sTgcDigit* digit : *digitColl ) {
// Set proper data time window in simulated sTGC RDOs
// BC0 has t = [-12.5, +12.5]
// and data will use BC = [-3,+4]
// totaling digits within t = [-87.5, 112.5]
if (digit->time() < -87.5 || digit->time() > 112.5) continue;
Identifier id = digit->identify();
uint16_t bcTag = digit->bcTag();
float time = digit->time() + STGC_RawData::s_timeTdoShift; //place holder time calibration
......
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