|
||||
File indexing completed on 2024-09-07 04:37:09
0001 //------------------------------------------------- 0002 // 0003 /** \class DTConfig 0004 * 0005 * Configurable common parameters 0006 * for Level-1 Muon DT Trigger 0007 * 0008 * \author S. Vanini 0009 * 0010 */ 0011 // 0012 //-------------------------------------------------- 0013 #ifndef DT_CONFIG_H 0014 #define DT_CONFIG_H 0015 0016 //--------------- 0017 // C++ Headers -- 0018 //--------------- 0019 0020 //---------------------- 0021 // Base Class Headers -- 0022 //---------------------- 0023 0024 //------------------------------------ 0025 // Collaborating Class Declarations -- 0026 //------------------------------------ 0027 0028 // --------------------- 0029 // -- Class Interface -- 0030 // --------------------- 0031 0032 class DTConfig { 0033 public: 0034 //! Constants: first and last step to start trigger finding 0035 static const int NSTEPL = 24, NSTEPF = 9; 0036 0037 static const int NBTITC = 4; 0038 0039 //! Constant: number of TRACOs in input to a TSS 0040 static const int NTCTSS = 4; 0041 0042 //! Constructor 0043 DTConfig() {} 0044 0045 //! Destructor 0046 virtual ~DTConfig() {} 0047 }; 0048 0049 #endif
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |