LDMX Software
EcalDigiVerifier.h
1#ifndef DQM_ECALDIGIVERIFIER_H
2#define DQM_ECALDIGIVERIFIER_H
3
4// LDMX Framework
5
6#include "DetDescr/EcalID.h"
7#include "Ecal/Event/EcalHit.h"
8#include "Framework/Configure/Parameters.h"
11
12namespace dqm {
13
19 public:
25 EcalDigiVerifier(const std::string& name, framework::Process& process)
26 : framework::Analyzer(name, process) {}
27
32
36 virtual void analyze(const framework::Event& event);
37
38 private:
40 std::string ecal_sim_hit_coll_;
41
43 std::string ecal_sim_hit_pass_;
44
46 std::string ecal_rec_hit_coll_;
47
49 std::string ecal_rec_hit_pass_;
50
53};
54} // namespace dqm
55
56#endif /* DQM_ECALDIGIVERIFIER_H */
Class that defines an ECal detector ID with a cell number.
Base classes for all user event processing components to extend.
Class which stores simulated calorimeter hit information.
Generate histograms to check digi pipeline performance.
std::string ecal_sim_hit_coll_
Collection Name for SimHits.
int num_layers_
Number of layers in the ECAL.
std::string ecal_sim_hit_pass_
Pass Name for SimHits.
virtual void analyze(const framework::Event &event)
Fills histograms.
std::string ecal_rec_hit_pass_
Pass Name for RecHits.
std::string ecal_rec_hit_coll_
Collection Name for RecHits.
virtual void configure(framework::config::Parameters &ps)
Input python configuration parameters.
EcalDigiVerifier(const std::string &name, framework::Process &process)
Constructor.
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.
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.