LDMX Software
HgcrocPulseTruthAnalyzer.h
1#ifndef _DQM_HGCROCPULSETRUTHANALYZER_H_
2#define _DQM_HGCROCPULSETRUTHANALYZER_H_
3
4/*~~~~~~~~~~~~~~~*/
5/* Framework */
6/*~~~~~~~~~~~~~~~*/
7#include "Framework/Configure/Parameters.h"
8#include "Framework/Event.h"
10#include "TGraph.h"
11#include "Tools/AnalysisUtils.h"
12
13namespace dqm {
14
16 public:
17 HgcrocPulseTruthAnalyzer(const std::string& name, framework::Process& process)
19
20 void configure(framework::config::Parameters& parameters) override;
21
22 void analyze(const framework::Event& event) override;
23
24 private:
25 std::string input_digi_name_;
26 std::string input_digi_pass_;
27 std::string input_truth_name_;
28 std::string input_truth_pass_;
29};
30
31} // namespace dqm
32
33#endif
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
Callback for the EventProcessor to configure itself from the given set of parameters.
void analyze(const framework::Event &event) override
Process the event and make histograms or summaries.
Base class for a module which does not produce a data product.
virtual void process(Event &event) final
Processing an event for an Analyzer is calling analyze.
Implements an event buffer system for storing event data.
Definition Event.h:42
Class which represents the process under execution.
Definition Process.h:36
Class encapsulating parameters for configuring a processor.
Definition Parameters.h:29