CMS 3D CMS Logo

DTTFMasksOnlineProd.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: DTTFMasksOnlineProd
4 // Class: DTTFMasksOnlineProd
5 //
13 //
14 // Original Author: J. Troconiz - UAM Madrid
15 // Created: Fri Apr 3 00:26:52 CEST 2009
16 //
17 //
18 
19 
20 // system include files
21 #include <iostream>
22 
23 // user include files
25 
28 
29 //
30 // class declaration
31 //
32 
34  public L1ConfigOnlineProdBase< L1MuDTTFMasksRcd, L1MuDTTFMasks > {
35  public:
38 
39  virtual std::shared_ptr< L1MuDTTFMasks > newObject(
40  const std::string& objectKey ) override ;
41 
42  private:
43 
44  // ----------member data ---------------------------
45 };
46 
47 //
48 // constructors and destructor
49 //
51  const edm::ParameterSet& iConfig)
53 {
54  //the following line is needed to tell the framework what
55  // data is being produced
56 
57  //now do what ever other initialization is needed
58 }
59 
60 
62 {
63 
64  // do anything here that needs to be done at desctruction time
65  // (e.g. close files, deallocate resources etc.)
66 
67 }
68 
69 std::shared_ptr< L1MuDTTFMasks >
71 {
72  using namespace edm::es;
73 
74  auto pDTTFMasks = std::make_shared< L1MuDTTFMasks >() ;
75 
76  pDTTFMasks->reset() ;
77 
78  std::string dttfSchema = "CMS_DT_TF" ;
79 
80  // Order of strings is used below -- don't change!
81  std::vector< std::string > crateMaskColumns ;
82  crateMaskColumns.push_back( "WEDGE_CRATE_1" ) ;
83  crateMaskColumns.push_back( "WEDGE_CRATE_2" ) ;
84  crateMaskColumns.push_back( "WEDGE_CRATE_3" ) ;
85  crateMaskColumns.push_back( "WEDGE_CRATE_4" ) ;
86  crateMaskColumns.push_back( "WEDGE_CRATE_5" ) ;
87  crateMaskColumns.push_back( "WEDGE_CRATE_6" ) ;
88  crateMaskColumns.push_back( "WEDGE_CRATE_1_E" ) ;
89  crateMaskColumns.push_back( "WEDGE_CRATE_2_E" ) ;
90  crateMaskColumns.push_back( "WEDGE_CRATE_3_E" ) ;
91  crateMaskColumns.push_back( "WEDGE_CRATE_4_E" ) ;
92  crateMaskColumns.push_back( "WEDGE_CRATE_5_E" ) ;
93  crateMaskColumns.push_back( "WEDGE_CRATE_6_E" ) ;
94 
95  l1t::OMDSReader::QueryResults crateMaskResults =
96  m_omdsReader.basicQuery( crateMaskColumns,
97  dttfSchema,
98  "DTTF_RUN_SETTINGS",
99  "DTTF_RUN_SETTINGS.ID",
100  m_omdsReader.singleAttribute( objectKey ) ) ;
101 
102  if( crateMaskResults.queryFailed() ||
103  crateMaskResults.numberRows() != 1 ) // check query successful
104  {
105  edm::LogError( "L1-O2O" )
106  << "Problem with L1MuDTTFMasks key " << objectKey ;
107  return std::shared_ptr< L1MuDTTFMasks >() ;
108  }
109 
110  // Cache crate masks
111  unsigned long crateMaskL[ 6 ] ;
112  unsigned long crateMaskR[ 6 ] ;
113  unsigned long krateMaskL[ 6 ] ;
114  unsigned long krateMaskR[ 6 ] ;
115  for( int icrate = 0 ; icrate < 6 ; ++icrate )
116  {
117  std::string crateMask ;
118  crateMaskResults.fillVariable( crateMaskColumns[ icrate ],
119  crateMask ) ;
120  char* pEnd;
121  crateMaskL[ icrate ] = std::strtol( crateMask.c_str(), &pEnd, 16 ) ;
122  crateMaskR[ icrate ] = std::strtol( pEnd, (char **)NULL, 16 ) ;
123 
124  crateMaskResults.fillVariable( crateMaskColumns[ icrate+6 ],
125  crateMask ) ;
126  krateMaskL[ icrate ] = std::strtol( crateMask.c_str(), &pEnd, 16 ) ;
127  krateMaskR[ icrate ] = std::strtol( pEnd, (char **)NULL, 16 ) ;
128 
129  std::cout << "Crate " << icrate << " masks"
130  << " L: " << std::hex << crateMaskL[ icrate ]
131  << " " << std::hex << krateMaskL[ icrate ]
132  << " R: " << std::hex << crateMaskR[ icrate ]
133  << " " << std::hex << krateMaskR[ icrate ] << std::endl ;
134  }
135 
136  // Map of sector (0-11) to name (L/R)
137  std::string sectorNames[ 12 ] = {
138  "R", "L", "R", "L", "L", "R", "L", "R", "R", "L", "R", "L" } ;
139 
140  // Map of sector (0-11) to crate (0-5)
141  int crateNumbers[ 12 ] = { 3, 3, 4, 4, 5, 5, 2, 2, 1, 1, 0, 0 } ;
142 
143  // Map of wheel array index to wheel number (+- 3, 2, 1).
144  int wheelNumbers[ 6 ] = { -3, -2, -1, 1, 2, 3 } ;
145 
146  // Map of wheel array index to name ({N,P}{0,1,2}).
147  std::string wheelNames[ 6 ] = { "N2", "N1", "N0", "P0", "P1", "P2" } ;
148 
149  // Map of sector+wheel name to bit number in crate mask
150  std::map< std::string, unsigned int > crateMaskBitmap ;
151  crateMaskBitmap.insert( std::make_pair( "N2", 24 ) ) ;
152  crateMaskBitmap.insert( std::make_pair( "N1", 20 ) ) ;
153  crateMaskBitmap.insert( std::make_pair( "N0", 16 ) ) ;
154  crateMaskBitmap.insert( std::make_pair( "P0", 8 ) ) ;
155  crateMaskBitmap.insert( std::make_pair( "P1", 4 ) ) ;
156  crateMaskBitmap.insert( std::make_pair( "P2", 0 ) ) ;
157 
158  std::map< std::string, unsigned int > krateMaskBitmap ;
159  krateMaskBitmap.insert( std::make_pair( "N2", 16 ) ) ;
160  krateMaskBitmap.insert( std::make_pair( "N1", 12 ) ) ;
161  krateMaskBitmap.insert( std::make_pair( "P0", 8 ) ) ;
162  krateMaskBitmap.insert( std::make_pair( "P1", 4 ) ) ;
163  krateMaskBitmap.insert( std::make_pair( "P2", 0 ) ) ;
164 
165  // Loop over sectors 0-11
166  for( int isc = 0 ; isc < 12 ; ++isc )
167  {
168  int crateNumber = crateNumbers[ isc ] ;
169  unsigned long crateMask = crateMaskL[ crateNumber ] ;
170  if ( sectorNames[ isc ] == "R" ) crateMask = crateMaskR[ crateNumber ] ;
171  unsigned long krateMask = krateMaskL[ crateNumber ] ;
172  if ( sectorNames[ isc ] == "R" ) krateMask = krateMaskR[ crateNumber ] ;
173  std::cout << "isc " << isc << " icr " << crateNumber << std::endl ;
174 
175  // Loop over wheels 0-5
176  for( int iwh = 0 ; iwh < 6 ; ++iwh )
177  {
178  std::string sectorWheelName =
179  sectorNames[ isc ] + wheelNames[ iwh ] ;
180 
181  unsigned int maskBit = 30 ;
182  std::map< std::string, unsigned int >::const_iterator itr =
183  crateMaskBitmap.find( wheelNames[ iwh ] ) ;
184  if( itr != crateMaskBitmap.end() ) maskBit = itr->second ;
185 
186  unsigned long phtfEnabled = ( crateMask >> maskBit ) & 0xF ;
187 
188  if ( wheelNames[ iwh ] == "P2" ) phtfEnabled += ( crateMask >> 24 ) & 0x10 ;
189  if ( wheelNames[ iwh ] == "N2" ) phtfEnabled += ( crateMask >> 25 ) & 0x10 ;
190 
191  std::cout << "Bits " << std::dec << maskBit << " (" << sectorWheelName
192  << ") of mask " << std::hex << crateMask << " is "
193  << std::hex << phtfEnabled << std::endl ;
194 
195  int nwh = wheelNumbers[ iwh ] ;
196 
197  unsigned long chmask = phtfEnabled & 0x1;
198  std::cout << " INREC_CHDIS_ST1 " << 1-chmask ;
199  pDTTFMasks->set_inrec_chdis_st1( nwh, isc, 1-chmask ) ;
200  chmask = ( phtfEnabled >> 1 ) & 0x1;
201  std::cout << " INREC_CHDIS_ST2 " << 1-chmask ;
202  pDTTFMasks->set_inrec_chdis_st2( nwh, isc, 1-chmask ) ;
203  chmask = ( phtfEnabled >> 2 ) & 0x1;
204  std::cout << " INREC_CHDIS_ST3 " << 1-chmask ;
205  pDTTFMasks->set_inrec_chdis_st3( nwh, isc, 1-chmask ) ;
206  chmask = ( phtfEnabled >> 3 ) & 0x1;
207  std::cout << " INREC_CHDIS_ST4 " << 1-chmask ;
208  pDTTFMasks->set_inrec_chdis_st4( nwh, isc, 1-chmask ) ;
209  chmask = ( phtfEnabled >> 4 ) & 0x1;
210  std::cout << " INREC_CHDIS_CSC " << 1-chmask << std::endl ;
211  pDTTFMasks->set_inrec_chdis_csc( nwh, isc, 1-chmask ) ;
212 
213  if ( wheelNames[ iwh ] == "N0" ) continue ;
214 
215  maskBit = 20 ;
216  itr = krateMaskBitmap.find( wheelNames[ iwh ] ) ;
217  if( itr != krateMaskBitmap.end() ) maskBit = itr->second ;
218 
219  unsigned long ettfEnabled = ( krateMask >> maskBit ) & 0x7 ;
220 
221  std::cout << "Bits " << std::dec << maskBit << " (" << sectorWheelName
222  << ") of mask " << std::hex << krateMask << " is "
223  << std::hex << ettfEnabled << std::endl ;
224 
225  chmask = ettfEnabled & 0x1;
226  std::cout << " ETSOC_CHDIS_ST1 " << 1-chmask ;
227  pDTTFMasks->set_etsoc_chdis_st1( nwh, isc, 1-chmask ) ;
228  chmask = ( ettfEnabled >> 1 ) & 0x1;
229  std::cout << " ETSOC_CHDIS_ST2 " << 1-chmask ;
230  pDTTFMasks->set_etsoc_chdis_st2( nwh, isc, 1-chmask ) ;
231  chmask = ( ettfEnabled >> 2 ) & 0x1;
232  std::cout << " ETSOC_CHDIS_ST3 " << 1-chmask << std::endl ;
233  pDTTFMasks->set_etsoc_chdis_st3( nwh, isc, 1-chmask ) ;
234  }
235  }
236 
237  return pDTTFMasks ;
238 }
239 
240 // ------------ method called to produce the data ------------
241 
242 
243 //define this as a plug-in
bool fillVariable(const std::string &columnName, T &outputVariable) const
Definition: OMDSReader.h:311
const QueryResults singleAttribute(const T &data) const
Definition: OMDSReader.h:295
virtual std::shared_ptr< L1MuDTTFMasks > newObject(const std::string &objectKey) override
#define NULL
Definition: scimark2.h:8
const QueryResults basicQuery(const std::vector< std::string > &columnNames, const std::string &schemaName, const std::string &tableName, const std::string &conditionLHS="", const QueryResults conditionRHS=QueryResults(), const std::string &conditionRHSName="")
Definition: OMDSReader.cc:86
DTTFMasksOnlineProd(const edm::ParameterSet &)
#define DEFINE_FWK_EVENTSETUP_MODULE(type)
Definition: ModuleFactory.h:60