LDMX Software
TrigScintDigiVerifier.h
1#ifndef DQM_TSDIGIVERIFIER_H
2#define DQM_TSDIGIVERIFIER_H
3
4#include <algorithm>
5
6// LDMX Framework
7#include "DetDescr/TrigScintID.h"
8#include "Framework/Configure/Parameters.h"
11#include "TrigScint/Event/TrigScintHit.h"
12
13namespace dqm {
14
20 public:
27 : framework::Analyzer(name, process) {}
28
33
37 virtual void analyze(const framework::Event& event);
38
39 private:
41 std::string ts_simhit_coll_;
42
44 std::string ts_simhit_pass_;
45
47 std::string ts_digi_coll_;
48
50 std::string ts_digi_pass_;
51};
52} // namespace dqm
53
54#endif /* DQM_TSDIGIVERIFIER_H */
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 ts_simhit_pass_
Pass Name for SimHits.
TrigScintDigiVerifier(const std::string &name, framework::Process &process)
Constructor.
virtual void analyze(const framework::Event &event)
Fills histograms.
virtual void configure(framework::config::Parameters &ps)
Input python configuration parameters.
std::string ts_simhit_coll_
Collection Name for SimHits.
std::string ts_digi_coll_
Collection Name for digis.
std::string ts_digi_pass_
Pass Name for digis.
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.