LDMX Software
RecoilTrackerDQM.h
Go to the documentation of this file.
1
7#ifndef _DQM_RECOIL_TRACKER_DQM_H_
8#define _DQM_RECOIL_TRACKER_DQM_H_
9
10//----------------//
11// C++ StdLib //
12//----------------//
13#include <unordered_map>
14#include <utility>
15
16//----------//
17// LDMX //
18//----------//
19#include "Tools/AnalysisUtils.h"
20
21/*~~~~~~~~~~~~~~~*/
22/* Framework */
23/*~~~~~~~~~~~~~~~*/
24#include "Framework/Configure/Parameters.h"
25#include "Framework/Event.h"
27
28namespace dqm {
29
31 public:
33 RecoilTrackerDQM(const std::string& name, framework::Process& process);
34
36 virtual ~RecoilTrackerDQM();
37
43 void configure(framework::config::Parameters& parameters) override;
44
50 void analyze(const framework::Event& event) override;
51
53 void onProcessStart() override;
54
55}; // RecoilTrackerDQM
56
57} // namespace dqm
58
59#endif // _DQM_RECOIL_TRACKER_DQM_H_
Collection of utility functions useful for analysis.
Base classes for all user event processing components to extend.
Class implementing an event buffer system for storing event data.
void configure(framework::config::Parameters &parameters) override
Configure the processor using the given user specified parameters.
void onProcessStart() override
Method executed before processing of events begins.
virtual ~RecoilTrackerDQM()
Destructor.
void analyze(const framework::Event &event) override
Process the event and make histograms ro summaries.
Base class for a module which does not produce a data product.
Implements an event buffer system for storing event data.
Definition Event.h:41
Class which represents the process under execution.
Definition Process.h:36
Class encapsulating parameters for configuring a processor.
Definition Parameters.h:27