LDMX Software
EcalSPElectronKinematics.h
1#ifndef DQM_ECALSPELECTRONKINEMATICS_H
2#define DQM_ECALSPELECTRONKINEMATICS_H
3
4#include "Framework/Configure/Parameters.h"
6
7namespace dqm {
8
25 public:
26 EcalSPElectronKinematics(const std::string& name, framework::Process& process)
28
29 ~EcalSPElectronKinematics() = default;
30
32 void produce(framework::Event& event) override;
33
34 private:
35 std::string ecal_sp_coll_name_;
36 std::string ecal_sp_pass_name_;
37};
38
39} // namespace dqm
40
41#endif // DQM_ECALSPELECTRONKINEMATICS_H
Base classes for all user event processing components to extend.
Extracts and histograms the kinematics of the primary electron at the ECal front-face scoring plane.
void produce(framework::Event &event) override
Process the event and put new data products into it.
void configure(framework::config::Parameters &ps) override
Callback for the EventProcessor to configure itself from the given set of parameters.
Implements an event buffer system for storing event data.
Definition Event.h:42
Class which represents the process under execution.
Definition Process.h:37
Base class for a module which produces a data product.
virtual void process(Event &event) final
Processing an event for a Producer is calling produce.
Class encapsulating parameters for configuring a processor.
Definition Parameters.h:29