LDMX Software
TrkDeDxMassEstFeatures.h
1#ifndef DQM_TRKDEDXMASSESTFEATURES_H
2#define DQM_TRKDEDXMASSESTFEATURES_H
3
4// LDMX Framework
5#include "Framework/Configure/Parameters.h" // Needed to import parameters from configuration file
6#include "Framework/EventProcessor.h" //Needed to declare processor
7
8namespace dqm {
9
15 public:
21 TrkDeDxMassEstFeatures(const std::string& name, framework::Process& process)
22 : framework::Analyzer(name, process) {}
23
27 virtual void configure(framework::config::Parameters& ps) override;
28
32 virtual void analyze(const framework::Event& event) override;
33
35 void onProcessStart() override;
36
37 private:
40
43};
44} // namespace dqm
45
46#endif /* DQM_TRKDEDXMASSESTFEATURES_H */
Base classes for all user event processing components to extend.
Generate histograms to check tracker dE/dx mass estimate features.
TrkDeDxMassEstFeatures(const std::string &name, framework::Process &process)
Constructor.
void onProcessStart() override
Method executed before processing of events begins.
virtual void configure(framework::config::Parameters &ps) override
Input python configuration parameters.
std::string mass_estimate_name_
Collection Name for mass estimate object.
std::string mass_estimate_pass_
Pass Name for mass estimate object.
virtual void analyze(const framework::Event &event) override
Fills histograms.
Base class for a module which does not produce a data product.
Analyzer(const std::string &name, Process &process)
Class constructor.
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
All classes in the ldmx-sw project use this namespace.
Definition PerfDict.cxx:45