File indexing completed on 2023-03-17 10:42:26
0001
0002
0003
0004
0005
0006
0007 #include "CalibMuon/DTDigiSync/interface/DTTTrigBaseSync.h"
0008
0009 DTTTrigBaseSync::DTTTrigBaseSync() {}
0010
0011 DTTTrigBaseSync::~DTTTrigBaseSync() {}
0012
0013 double DTTTrigBaseSync::offset(const DTLayer* layer, const DTWireId& wireId, const GlobalPoint& globalPos) const {
0014 double tTrig = 0;
0015 double wireProp = 0;
0016 double tof = 0;
0017 return offset(layer, wireId, globalPos, tTrig, wireProp, tof);
0018 }
0019
0020 double DTTTrigBaseSync::emulatorOffset(const DTWireId& wireId) const {
0021 double tTrig = 0.;
0022 double t0cell = 0.;
0023 return emulatorOffset(wireId, tTrig, t0cell);
0024 }