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 
17 // this class header
19 
20 // system include files
21 #include <iomanip>
22 
23 // user include files
24 // base class
25 
28 
31 
32 // forward declarations
33 
34 // constructor(s)
36 {
37  // empty
38 }
39 
40 // destructor
42 {
43  // empty
44 }
45 
46 // loop over events
48  const edm::Event& iEvent, const edm::EventSetup& evSetup)
49 {
50 
51 
53  evSetup.get< L1GtBoardMapsRcd >().get( l1GtBM ) ;
54 
55  l1GtBM->print(std::cout);
56  std::cout << std::endl;
57 
58  // print for simplicity the individual maps
59 
60  l1GtBM->printGtDaqRecordMap(std::cout);
61  std::cout << std::endl;
62 
63  l1GtBM->printGtEvmRecordMap(std::cout);
64  std::cout << std::endl;
65 
66  l1GtBM->printGtDaqActiveBoardsMap(std::cout);
67  std::cout << std::endl;
68 
69  l1GtBM->printGtEvmActiveBoardsMap(std::cout);
70  std::cout << std::endl;
71 
72  l1GtBM->printGtBoardSlotMap(std::cout);
73  std::cout << std::endl;
74 
75  l1GtBM->printGtBoardHexNameMap(std::cout);
76  std::cout << std::endl;
77 
78  l1GtBM->printGtQuadToPsbMap(std::cout);
79  std::cout << std::endl;
80 }
virtual void analyze(const edm::Event &, const edm::EventSetup &)
int iEvent
Definition: GenABIO.cc:243
const T & get() const
Definition: EventSetup.h:55
tuple cout
Definition: gather_cfg.py:121
L1GtBoardMapsTester(const edm::ParameterSet &)