LDMX Software
DigiDQM.h
1#pragma once
2
3#include <string>
4
5#include "Framework/Event.h"
7
8namespace tracking::dqm {
9
47 public:
48 DigiDQM(const std::string& name, framework::Process& process)
50
51 ~DigiDQM() = default;
52
53 void configure(framework::config::Parameters& parameters) override;
54 void analyze(const framework::Event& event) override;
55
56 private:
57 std::string sim_coll_name_{"TaggerSimHits"};
58 std::string sim_pass_name_{""};
59 std::string digi_coll_name_{""};
60 std::string digi_pass_name_{""};
61 std::string fitted_coll_name_{"TaggerFittedSiStripHits"};
62 std::string fitted_pass_name_{""};
63 std::string cluster_coll_name_{"TaggerClusterMeasurements"};
64 std::string cluster_pass_name_{""};
65 int n_sensors_{14};
66};
67
68} // 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:37
Class encapsulating parameters for configuring a processor.
Definition Parameters.h:29
DQM analyzer for silicon-strip digitization and clustering.
Definition DigiDQM.h:46
void analyze(const framework::Event &event) override
Process the event and make histograms or summaries.
Definition DigiDQM.cxx:35
void configure(framework::config::Parameters &parameters) override
Callback for the EventProcessor to configure itself from the given set of parameters.
Definition DigiDQM.cxx:20