1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* See header file for a description of this class.
*
* \author G. Cerminara - INFN Torino
*/
#include "CalibMuon/DTDigiSync/interface/DTTTrigBaseSync.h"
DTTTrigBaseSync::DTTTrigBaseSync() {}
DTTTrigBaseSync::~DTTTrigBaseSync() {}
double DTTTrigBaseSync::offset(const DTLayer* layer, const DTWireId& wireId, const GlobalPoint& globalPos) const {
double tTrig = 0;
double wireProp = 0;
double tof = 0;
return offset(layer, wireId, globalPos, tTrig, wireProp, tof);
}
double DTTTrigBaseSync::emulatorOffset(const DTWireId& wireId) const {
double tTrig = 0.;
double t0cell = 0.;
return emulatorOffset(wireId, tTrig, t0cell);
}
|