Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:31

0001 /*
0002  *  See header file for a description of this class.
0003  *
0004  *  \author G. Cerminara - INFN Torino
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 }