test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L1GtBoardMapsTester.cc
Go to the documentation of this file.
1 
15 // this class header
17 
18 // system include files
19 #include <iomanip>
20 #include <iostream>
21 
22 // user include files
23 // base class
24 
27 
30 
31 // forward declarations
32 
33 // constructor(s)
35 {
36  // empty
37 }
38 
39 // destructor
41 {
42  // empty
43 }
44 
45 // loop over events
47  const edm::Event& iEvent, const edm::EventSetup& evSetup)
48 {
49 
50 
52  evSetup.get< L1GtBoardMapsRcd >().get( l1GtBM ) ;
53 
54  l1GtBM->print(std::cout);
55  std::cout << std::endl;
56 
57  // print for simplicity the individual maps
58 
59  l1GtBM->printGtDaqRecordMap(std::cout);
60  std::cout << std::endl;
61 
62  l1GtBM->printGtEvmRecordMap(std::cout);
63  std::cout << std::endl;
64 
65  l1GtBM->printGtDaqActiveBoardsMap(std::cout);
66  std::cout << std::endl;
67 
68  l1GtBM->printGtEvmActiveBoardsMap(std::cout);
69  std::cout << std::endl;
70 
71  l1GtBM->printGtBoardSlotMap(std::cout);
72  std::cout << std::endl;
73 
74  l1GtBM->printGtBoardHexNameMap(std::cout);
75  std::cout << std::endl;
76 
77  l1GtBM->printGtQuadToPsbMap(std::cout);
78  std::cout << std::endl;
79 }
virtual void analyze(const edm::Event &, const edm::EventSetup &)
int iEvent
Definition: GenABIO.cc:230
const T & get() const
Definition: EventSetup.h:55
tuple cout
Definition: gather_cfg.py:121
L1GtBoardMapsTester(const edm::ParameterSet &)