LDMX Software
TrackerDigiDQM.h
1#pragma once
2
3#include "Framework/Event.h"
5
6namespace tracking::dqm {
7
9 public:
12 TrackerDigiDQM(const std::string& name, framework::Process& process)
14
16 ~TrackerDigiDQM() = default;
17
18 void configure(framework::config::Parameters& parameters) override;
19
24 void analyze(const framework::Event& event) override;
25
26 private:
27 std::string measurements_passname_;
28 std::string output_measurements_passname_;
29};
30} // namespace tracking::dqm
Base classes for all user event processing components to extend.
Class implementing an event buffer system for storing event data.
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
void analyze(const framework::Event &event) override
Process the event and make histograms or summaries.
void configure(framework::config::Parameters &parameters) override
Callback for the EventProcessor to configure itself from the given set of parameters.
~TrackerDigiDQM()=default
Destructor.