CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 boost::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 boost::shared_ptr< L1MuDTTFMasks >
71 {
72  using namespace edm::es;
73 
74  boost::shared_ptr< L1MuDTTFMasks > pDTTFMasks(
75  new L1MuDTTFMasks() ) ;
76 
77  pDTTFMasks->reset() ;
78 
79  std::string dttfSchema = "CMS_DT_TF" ;
80 
81  // Order of strings is used below -- don't change!
82  std::vector< std::string > crateMaskColumns ;
83  crateMaskColumns.push_back( "WEDGE_CRATE_1" ) ;
84  crateMaskColumns.push_back( "WEDGE_CRATE_2" ) ;
85  crateMaskColumns.push_back( "WEDGE_CRATE_3" ) ;
86  crateMaskColumns.push_back( "WEDGE_CRATE_4" ) ;
87  crateMaskColumns.push_back( "WEDGE_CRATE_5" ) ;
88  crateMaskColumns.push_back( "WEDGE_CRATE_6" ) ;
89  crateMaskColumns.push_back( "WEDGE_CRATE_1_E" ) ;
90  crateMaskColumns.push_back( "WEDGE_CRATE_2_E" ) ;
91  crateMaskColumns.push_back( "WEDGE_CRATE_3_E" ) ;
92  crateMaskColumns.push_back( "WEDGE_CRATE_4_E" ) ;
93  crateMaskColumns.push_back( "WEDGE_CRATE_5_E" ) ;
94  crateMaskColumns.push_back( "WEDGE_CRATE_6_E" ) ;
95 
96  l1t::OMDSReader::QueryResults crateMaskResults =
97  m_omdsReader.basicQuery( crateMaskColumns,
98  dttfSchema,
99  "DTTF_RUN_SETTINGS",
100  "DTTF_RUN_SETTINGS.ID",
101  m_omdsReader.singleAttribute( objectKey ) ) ;
102 
103  if( crateMaskResults.queryFailed() ||
104  crateMaskResults.numberRows() != 1 ) // check query successful
105  {
106  edm::LogError( "L1-O2O" )
107  << "Problem with L1MuDTTFMasks key " << objectKey ;
108  return boost::shared_ptr< L1MuDTTFMasks >() ;
109  }
110 
111  // Cache crate masks
112  unsigned long crateMaskL[ 6 ] ;
113  unsigned long crateMaskR[ 6 ] ;
114  unsigned long krateMaskL[ 6 ] ;
115  unsigned long krateMaskR[ 6 ] ;
116  for( int icrate = 0 ; icrate < 6 ; ++icrate )
117  {
118  std::string crateMask ;
119  crateMaskResults.fillVariable( crateMaskColumns[ icrate ],
120  crateMask ) ;
121  char* pEnd;
122  crateMaskL[ icrate ] = std::strtol( crateMask.c_str(), &pEnd, 16 ) ;
123  crateMaskR[ icrate ] = std::strtol( pEnd, (char **)NULL, 16 ) ;
124 
125  crateMaskResults.fillVariable( crateMaskColumns[ icrate+6 ],
126  crateMask ) ;
127  krateMaskL[ icrate ] = std::strtol( crateMask.c_str(), &pEnd, 16 ) ;
128  krateMaskR[ icrate ] = std::strtol( pEnd, (char **)NULL, 16 ) ;
129 
130  std::cout << "Crate " << icrate << " masks"
131  << " L: " << std::hex << crateMaskL[ icrate ]
132  << " " << std::hex << krateMaskL[ icrate ]
133  << " R: " << std::hex << crateMaskR[ icrate ]
134  << " " << std::hex << krateMaskR[ icrate ] << std::endl ;
135  }
136 
137  // Map of sector (0-11) to name (L/R)
138  std::string sectorNames[ 12 ] = {
139  "R", "L", "R", "L", "L", "R", "L", "R", "R", "L", "R", "L" } ;
140 
141  // Map of sector (0-11) to crate (0-5)
142  int crateNumbers[ 12 ] = { 3, 3, 4, 4, 5, 5, 2, 2, 1, 1, 0, 0 } ;
143 
144  // Map of wheel array index to wheel number (+- 3, 2, 1).
145  int wheelNumbers[ 6 ] = { -3, -2, -1, 1, 2, 3 } ;
146 
147  // Map of wheel array index to name ({N,P}{0,1,2}).
148  std::string wheelNames[ 6 ] = { "N2", "N1", "N0", "P0", "P1", "P2" } ;
149 
150  // Map of sector+wheel name to bit number in crate mask
151  std::map< std::string, unsigned int > crateMaskBitmap ;
152  crateMaskBitmap.insert( std::make_pair( "N2", 24 ) ) ;
153  crateMaskBitmap.insert( std::make_pair( "N1", 20 ) ) ;
154  crateMaskBitmap.insert( std::make_pair( "N0", 16 ) ) ;
155  crateMaskBitmap.insert( std::make_pair( "P0", 8 ) ) ;
156  crateMaskBitmap.insert( std::make_pair( "P1", 4 ) ) ;
157  crateMaskBitmap.insert( std::make_pair( "P2", 0 ) ) ;
158 
159  std::map< std::string, unsigned int > krateMaskBitmap ;
160  krateMaskBitmap.insert( std::make_pair( "N2", 16 ) ) ;
161  krateMaskBitmap.insert( std::make_pair( "N1", 12 ) ) ;
162  krateMaskBitmap.insert( std::make_pair( "P0", 8 ) ) ;
163  krateMaskBitmap.insert( std::make_pair( "P1", 4 ) ) ;
164  krateMaskBitmap.insert( std::make_pair( "P2", 0 ) ) ;
165 
166  // Loop over sectors 0-11
167  for( int isc = 0 ; isc < 12 ; ++isc )
168  {
169  int crateNumber = crateNumbers[ isc ] ;
170  unsigned long crateMask = crateMaskL[ crateNumber ] ;
171  if ( sectorNames[ isc ] == "R" ) crateMask = crateMaskR[ crateNumber ] ;
172  unsigned long krateMask = krateMaskL[ crateNumber ] ;
173  if ( sectorNames[ isc ] == "R" ) krateMask = krateMaskR[ crateNumber ] ;
174  std::cout << "isc " << isc << " icr " << crateNumber << std::endl ;
175 
176  // Loop over wheels 0-5
177  for( int iwh = 0 ; iwh < 6 ; ++iwh )
178  {
179  std::string sectorWheelName =
180  sectorNames[ isc ] + wheelNames[ iwh ] ;
181 
182  unsigned int maskBit = 30 ;
183  std::map< std::string, unsigned int >::const_iterator itr =
184  crateMaskBitmap.find( wheelNames[ iwh ] ) ;
185  if( itr != crateMaskBitmap.end() ) maskBit = itr->second ;
186 
187  unsigned long phtfEnabled = ( crateMask >> maskBit ) & 0xF ;
188 
189  if ( wheelNames[ iwh ] == "P2" ) phtfEnabled += ( crateMask >> 24 ) & 0x10 ;
190  if ( wheelNames[ iwh ] == "N2" ) phtfEnabled += ( crateMask >> 25 ) & 0x10 ;
191 
192  std::cout << "Bits " << std::dec << maskBit << " (" << sectorWheelName
193  << ") of mask " << std::hex << crateMask << " is "
194  << std::hex << phtfEnabled << std::endl ;
195 
196  int nwh = wheelNumbers[ iwh ] ;
197 
198  unsigned long chmask = phtfEnabled & 0x1;
199  std::cout << " INREC_CHDIS_ST1 " << 1-chmask ;
200  pDTTFMasks->set_inrec_chdis_st1( nwh, isc, 1-chmask ) ;
201  chmask = ( phtfEnabled >> 1 ) & 0x1;
202  std::cout << " INREC_CHDIS_ST2 " << 1-chmask ;
203  pDTTFMasks->set_inrec_chdis_st2( nwh, isc, 1-chmask ) ;
204  chmask = ( phtfEnabled >> 2 ) & 0x1;
205  std::cout << " INREC_CHDIS_ST3 " << 1-chmask ;
206  pDTTFMasks->set_inrec_chdis_st3( nwh, isc, 1-chmask ) ;
207  chmask = ( phtfEnabled >> 3 ) & 0x1;
208  std::cout << " INREC_CHDIS_ST4 " << 1-chmask ;
209  pDTTFMasks->set_inrec_chdis_st4( nwh, isc, 1-chmask ) ;
210  chmask = ( phtfEnabled >> 4 ) & 0x1;
211  std::cout << " INREC_CHDIS_CSC " << 1-chmask << std::endl ;
212  pDTTFMasks->set_inrec_chdis_csc( nwh, isc, 1-chmask ) ;
213 
214  if ( wheelNames[ iwh ] == "N0" ) continue ;
215 
216  maskBit = 20 ;
217  itr = krateMaskBitmap.find( wheelNames[ iwh ] ) ;
218  if( itr != krateMaskBitmap.end() ) maskBit = itr->second ;
219 
220  unsigned long ettfEnabled = ( krateMask >> maskBit ) & 0x7 ;
221 
222  std::cout << "Bits " << std::dec << maskBit << " (" << sectorWheelName
223  << ") of mask " << std::hex << krateMask << " is "
224  << std::hex << ettfEnabled << std::endl ;
225 
226  chmask = ettfEnabled & 0x1;
227  std::cout << " ETSOC_CHDIS_ST1 " << 1-chmask ;
228  pDTTFMasks->set_etsoc_chdis_st1( nwh, isc, 1-chmask ) ;
229  chmask = ( ettfEnabled >> 1 ) & 0x1;
230  std::cout << " ETSOC_CHDIS_ST2 " << 1-chmask ;
231  pDTTFMasks->set_etsoc_chdis_st2( nwh, isc, 1-chmask ) ;
232  chmask = ( ettfEnabled >> 2 ) & 0x1;
233  std::cout << " ETSOC_CHDIS_ST3 " << 1-chmask << std::endl ;
234  pDTTFMasks->set_etsoc_chdis_st3( nwh, isc, 1-chmask ) ;
235  }
236  }
237 
238  return pDTTFMasks ;
239 }
240 
241 // ------------ method called to produce the data ------------
242 
243 
244 //define this as a plug-in
const QueryResults singleAttribute(const T &data) const
Definition: OMDSReader.h:295
#define NULL
Definition: scimark2.h:8
virtual boost::shared_ptr< L1MuDTTFMasks > newObject(const std::string &objectKey) override
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="") const
Definition: OMDSReader.cc:87
DTTFMasksOnlineProd(const edm::ParameterSet &)
#define DEFINE_FWK_EVENTSETUP_MODULE(type)
Definition: ModuleFactory.h:60
tuple cout
Definition: gather_cfg.py:121