CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DTGlobalRecoTask.h
Go to the documentation of this file.
1 #ifndef DTGlobalRecoTask_H
2 #define DTGlobalRecoTask_H
3 
4 /*
5  * \file DTGlobalRecoTask.h
6  *
7  * \author M. Zanetti - INFN Padova
8  *
9 */
10 
13 
16 
18 
21 
24 
25 #include <iostream>
26 #include <fstream>
27 #include <vector>
28 
30 
31 friend class DTMonitorModule;
32 
33 public:
34 
36 DTGlobalRecoTask(const edm::ParameterSet& ps, const edm::EventSetup& context);
37 
39 virtual ~DTGlobalRecoTask();
40 
41 protected:
42 
43 // Book the histograms
44 void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override;
45 
47 void analyze(const edm::Event& e, const edm::EventSetup& c);
48 
49 
50 private:
51 
52  int nevents;
53 
54  // My monitor elements
55 
56  std::ofstream logFile;
57 
58 };
59 
60 #endif
61 
62 /* Local Variables: */
63 /* show-trailing-whitespace: t */
64 /* truncate-lines: t */
65 /* End: */
std::ofstream logFile
friend class DTMonitorModule
DTGlobalRecoTask(const edm::ParameterSet &ps, const edm::EventSetup &context)
Constructor.
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
virtual ~DTGlobalRecoTask()
Destructor.
void analyze(const edm::Event &e, const edm::EventSetup &c)
Analyze.
Definition: Run.h:41