Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:30:43

0001 #ifndef SimMuon_DTDigitizer_DTDigiSyncFromTable_H
0002 #define SimMuon_DTDigitizer_DTDigiSyncFromTable_H
0003 
0004 /** \class DTDigiSyncFromTable
0005  *  Digi offsets taken from a synchronization table.
0006  *
0007  *  \author N. Amapane, R. Bellan - INFN Torino
0008  */
0009 
0010 #include "SimMuon/DTDigitizer/interface/DTDigiSyncBase.h"
0011 
0012 class DTWireId;
0013 class DTLayer;
0014 namespace edm {
0015   class ParameterSet;
0016 }
0017 
0018 class DTDigiSyncFromTable : public DTDigiSyncBase {
0019 public:
0020   /// Constructor
0021   DTDigiSyncFromTable(const edm::ParameterSet &);
0022 
0023   /// Destructor
0024   ~DTDigiSyncFromTable() override;
0025 
0026   /// Delays to be added to digi times during digitization, in ns.
0027   double digitizerOffset(const DTWireId *id, const DTLayer *layer = nullptr) const override;
0028 
0029   /// Offset to obtain "raw" TDCs for the L1 emulator from digis.
0030   double emulatorOffset(const DTWireId *id) const override;
0031 
0032 private:
0033 };
0034 #endif