00001 /* 00002 * See header file for a description of this class. 00003 * 00004 * $Date: 2006/02/22 13:12:04 $ 00005 * $Revision: 1.4 $ 00006 * \author N. Amapane, R. Bellan - INFN Torino 00007 */ 00008 00009 #include "SimMuon/DTDigitizer/src/DTDigiSyncFromTable.h" 00010 #include "DataFormats/MuonDetId/interface/DTWireId.h" 00011 00012 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00013 00014 #include "Geometry/DTGeometry/interface/DTLayer.h" 00015 00016 DTDigiSyncFromTable::DTDigiSyncFromTable(const edm::ParameterSet& pSet){} 00017 00018 DTDigiSyncFromTable::~DTDigiSyncFromTable(){} 00019 00020 // Delays to be added to digi times during digitization, in ns. 00021 double DTDigiSyncFromTable::digitizerOffset(const DTWireId * id, const DTLayer* layer) const { 00022 00023 double result = 0; 00024 00025 // ... 00026 00027 return result; 00028 } 00029 00030 // Offset to obtain "raw" TDCs for the L1 emulator from digis. 00031 double DTDigiSyncFromTable::emulatorOffset(const DTWireId * id) const { 00032 00033 double result = 0; 00034 00035 // ... 00036 00037 return result; 00038 }