CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L1MuDTTFConfig.cc
Go to the documentation of this file.
1 //-------------------------------------------------
2 //
3 // Class: L1MuDTTFConfig
4 //
5 // Description: DTTrackFinder parameters for L1MuDTTrackFinder
6 //
7 //
8 //
9 // Author :
10 // N. Neumeister CERN EP
11 // J. Troconiz UAM Madrid
12 //
13 //--------------------------------------------------
14 
15 //-----------------------
16 // This Class's Header --
17 //-----------------------
18 
20 
21 //---------------
22 // C++ Headers --
23 //---------------
24 
25 #include <iostream>
26 #include <string>
27 
28 //-------------------------------
29 // Collaborating Class Headers --
30 //-------------------------------
31 
32 using namespace std;
33 
34 // --------------------------------
35 // class L1MuDTTFConfig
36 //---------------------------------
37 
38 //----------------
39 // Constructors --
40 //----------------
41 
43 
44  m_ps = &ps;
45  setDefaults();
46 
47 }
48 
49 
50 //--------------
51 // Destructor --
52 //--------------
54 
55 
56 //--------------
57 // Operations --
58 //--------------
59 
61 
62  m_DTDigiInputTag = m_ps->getParameter<edm::InputTag>("DTDigi_Source");
63  m_CSCTrSInputTag = m_ps->getParameter<edm::InputTag>("CSCStub_Source");
64 
65  m_debug = true;
66  m_dbgLevel = m_ps->getUntrackedParameter<int>("Debug",0);
67 
68  m_overlap = m_ps->getUntrackedParameter<bool>("Overlap",true);
69 
70  // set min and max bunch crossing
71  m_BxMin = m_ps->getUntrackedParameter<int>("BX_min",-9);
72  m_BxMax = m_ps->getUntrackedParameter<int>("BX_max", 7);
73 
74  // set Filter for Extrapolator
75  m_extTSFilter = m_ps->getUntrackedParameter<int>("Extrapolation_Filter",1);
76 
77  // set switch for open LUTs usage
78  m_openLUTs = m_ps->getUntrackedParameter<bool>("Open_LUTs",false);
79 
80  // set switch for EX21 usage
81  m_useEX21 = m_ps->getUntrackedParameter<bool>("Extrapolation_21",false);
82 
83  // set switch for eta track finder usage
84  m_etaTF = m_ps->getUntrackedParameter<bool>("EtaTrackFinder",true);
85 
86  // set switch for etaFlag cancellation of CSC segments
87  m_etacanc = m_ps->getUntrackedParameter<bool>("CSC_Eta_Cancellation",false);
88 
89  // set Filter for Out-of-time Track Segments
90  m_TSOutOfTimeFilter = m_ps->getUntrackedParameter<bool>("OutOfTime_Filter",false);
91  m_TSOutOfTimeWindow = m_ps->getUntrackedParameter<int>("OutOfTime_Filter_Window",1);
92 
93  // set precision for extrapolation
94  m_NbitsExtPhi = m_ps->getUntrackedParameter<int>("Extrapolation_nbits_Phi", 8);
95  m_NbitsExtPhib = m_ps->getUntrackedParameter<int>("Extrapolation_nbits_PhiB",8);
96 
97  // set precision for pt-assignment
98  m_NbitsPtaPhi = m_ps->getUntrackedParameter<int>("PT_Assignment_nbits_Phi", 12);
99  m_NbitsPtaPhib = m_ps->getUntrackedParameter<int>("PT_Assignment_nbits_PhiB",10);
100 
101  // set precision for phi-assignment look-up tables
102  m_NbitsPhiPhi = m_ps->getUntrackedParameter<int>("PHI_Assignment_nbits_Phi", 10);
103  m_NbitsPhiPhib = m_ps->getUntrackedParameter<int>("PHI_Assignment_nbits_PhiB",10);
104 
105  if ( Debug(1) ) cout << endl;
106  if ( Debug(1) ) cout << "*******************************************" << endl;
107  if ( Debug(1) ) cout << "**** L1 barrel Track Finder settings : ****" << endl;
108  if ( Debug(1) ) cout << "*******************************************" << endl;
109  if ( Debug(1) ) cout << endl;
110 
111  if ( Debug(1) ) cout << "L1 barrel Track Finder : DT Digi Source: " << m_DTDigiInputTag << endl;
112  if ( Debug(1) ) cout << "L1 barrel Track Finder : CSC Stub Source: " << m_CSCTrSInputTag << endl;
113  if ( Debug(1) ) cout << endl;
114 
115  if ( Debug(1) ) cout << "L1 barrel Track Finder : debug level: " << m_dbgLevel << endl;
116 
117  if ( Debug(1) && m_overlap ) {
118  cout << "L1 barrel Track Finder : barrel-endcap overlap region : on" << endl;
119  }
120  if ( Debug(1) && !m_overlap ) {
121  cout << "L1 barrel Track Finder : barrel-endcap overlap region : off" << endl;
122  }
123 
124  if ( Debug(1) ) cout << "L1 barrel Track Finder : minimal bunch-crossing : " << m_BxMin << endl;
125  if ( Debug(1) ) cout << "L1 barrel Track Finder : maximal bunch-crossing : " << m_BxMax << endl;
126 
127  if ( Debug(1) ) cout << "L1 barrel Track Finder : Extrapolation Filter : " << m_extTSFilter << endl;
128 
129  if ( Debug(1) && m_openLUTs) {
130  cout << "L1 barrel Track Finder : use open LUTs : on" << endl;
131  }
132  if ( Debug(1) && !m_openLUTs) {
133  cout << "L1 barrel Track Finder : use open LUTs : off" << endl;
134  }
135 
136  if ( Debug(1) && m_useEX21 ) {
137  cout << "L1 barrel Track Finder : use EX21 extrapolations : on" << endl;
138  }
139  if ( Debug(1) && !m_useEX21 ) {
140  cout << "L1 barrel Track Finder : use EX21 extrapolations : off" << endl;
141  }
142 
143  if ( Debug(1) && m_etaTF ) {
144  cout << "L1 barrel Track Finder : Eta Track Finder : on" << endl;
145  }
146  if ( Debug(1) && !m_etaTF ) {
147  cout << "L1 barrel Track Finder : Eta Track Finder : off" << endl;
148  }
149 
150  if ( Debug(1) && m_etacanc ) {
151  cout << "L1 barrel Track Finder : CSC etaFlag cancellation : on" << endl;
152  }
153  if ( Debug(1) && !m_etacanc ) {
154  cout << "L1 barrel Track Finder : CSC etaFlag cancellation : off" << endl;
155  }
156 
157  if ( Debug(1) && m_TSOutOfTimeFilter ) {
158  cout << "L1 barrel Track Finder : out-of-time TS filter : on" << endl;
159  cout << "L1 barrel Track Finder : out-of-time TS filter window : " << m_TSOutOfTimeWindow << endl;
160  }
161  if ( Debug(1) && !m_TSOutOfTimeFilter ) {
162  cout << "L1 barrel Track Finder : out-of-time TS filter : off" << endl;
163  }
164 
165  if ( Debug(1) ) cout << "L1 barrel Track Finder : # of bits used for phi (extrapolation) : " << m_NbitsExtPhi << endl;
166  if ( Debug(1) ) cout << "L1 barrel Track Finder : # of bits used for phib (extrapolation) : " << m_NbitsExtPhib << endl;
167  if ( Debug(1) ) cout << "L1 barrel Track Finder : # of bits used for phi (pt-assignment) : " << m_NbitsPtaPhi << endl;
168  if ( Debug(1) ) cout << "L1 barrel Track Finder : # of bits used for phib (pt-assignment) : " << m_NbitsPtaPhib << endl;
169  if ( Debug(1) ) cout << "L1 barrel Track Finder : # of bits used for phi (phi-assignment) : " << m_NbitsPhiPhi << endl;
170  if ( Debug(1) ) cout << "L1 barrel Track Finder : # of bits used for phib (phi-assignment) : " << m_NbitsPhiPhib << endl;
171 
172 }
173 
174 
175 // static data members
176 
179 
180 bool L1MuDTTFConfig::m_debug = false;
182 bool L1MuDTTFConfig::m_overlap = true;
183 int L1MuDTTFConfig::m_BxMin = -9;
186 bool L1MuDTTFConfig::m_openLUTs = false;
187 bool L1MuDTTFConfig::m_useEX21 = false;
188 bool L1MuDTTFConfig::m_etaTF = true;
189 bool L1MuDTTFConfig::m_etacanc = false;
static bool m_overlap
static int m_NbitsPtaPhib
L1MuDTTFConfig(const edm::ParameterSet &ps)
constructor
static int m_NbitsExtPhi
static bool m_etaTF
static int m_TSOutOfTimeWindow
static bool m_openLUTs
static edm::InputTag m_CSCTrSInputTag
static bool m_useEX21
static int m_NbitsPtaPhi
static bool m_TSOutOfTimeFilter
static edm::InputTag m_DTDigiInputTag
virtual ~L1MuDTTFConfig()
destructor
static bool m_debug
static int m_NbitsExtPhib
static int m_NbitsPhiPhib
static bool m_etacanc
static int m_BxMax
def setDefaults
Definition: setDefaults.py:6
static int m_NbitsPhiPhi
tuple cout
Definition: gather_cfg.py:145
static int m_extTSFilter
static int m_BxMin
const bool Debug
static int m_dbgLevel