CMS 3D CMS Logo

L1TFED.h
Go to the documentation of this file.
1 #ifndef L1TFED_H
2 #define L1TFED_H
3 
4 /*
5  * \file L1TFED.h
6  *
7  * \author J. Berryhill
8  *
9 */
10 
11 // system include files
12 #include <memory>
13 #include <unistd.h>
14 
15 // user include files
17 
20 
22 
27 
32 
33 #include <iostream>
34 #include <fstream>
35 #include <vector>
36 
37 //
38 // class decleration
39 //
40 
41 class L1TFED : public DQMEDAnalyzer {
42 public:
43  // Constructor
44  L1TFED(const edm::ParameterSet& ps);
45 
46  // Destructor
47  ~L1TFED() override;
48 
49 protected:
50  // Analyze
51  void analyze(const edm::Event& e, const edm::EventSetup& c) override;
52 
53  // BeginRun
54  void bookHistograms(DQMStore::IBooker&, edm::Run const&, edm::EventSetup const&) override;
55 
56 private:
57  // ----------member data ---------------------------
60 
64 
65  int nev_; // Number of events processed
66  bool verbose_;
68  std::vector<int> l1feds_;
69  std::ofstream logFile_;
74 };
75 
76 #endif
MonitorElement * fedentries
Definition: L1TFED.h:61
int nev_
Definition: L1TFED.h:65
MonitorElement * hfedprof
Definition: L1TFED.h:59
std::ofstream logFile_
Definition: L1TFED.h:69
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
Definition: L1TFED.cc:28
bool monitorDaemon_
Definition: L1TFED.h:67
edm::InputTag fedSource_
Definition: L1TFED.h:70
edm::EDGetTokenT< FEDRawDataCollection > rawl_
Definition: L1TFED.h:71
Definition: L1TFED.h:41
MonitorElement * fednonfatal
Definition: L1TFED.h:63
MonitorElement * fedfatal
Definition: L1TFED.h:62
bool stableROConfig_
Definition: L1TFED.h:73
void analyze(const edm::Event &e, const edm::EventSetup &c) override
Definition: L1TFED.cc:47
std::string directory_
Definition: L1TFED.h:72
std::vector< int > l1feds_
Definition: L1TFED.h:68
L1TFED(const edm::ParameterSet &ps)
Definition: L1TFED.cc:13
~L1TFED() override
Definition: L1TFED.cc:26
MonitorElement * hfedsize
Definition: L1TFED.h:58
bool verbose_
Definition: L1TFED.h:66
Definition: Run.h:45