LDMX Software
HcalTPSelector.h
Go to the documentation of this file.
1
7#ifndef TRIGGER_HCALTPSELECTOR_H
8#define TRIGGER_HCALTPSELECTOR_H
9
10// LDMX Framework
12#include "Framework/Configure/Parameters.h" // Needed to import parameters from configuration file
13#include "Framework/Event.h"
14#include "Framework/EventProcessor.h" //Needed to declare processor
15#include "Recon/Event/CaloTrigPrim.h"
16#include "TrigUtilities.h"
17#include "Trigger/Event/TrigCaloHit.h"
18#include "Trigger/Event/TrigEnergySum.h"
19
20namespace trigger {
21
27 public:
28 HcalTPSelector(const std::string& name, framework::Process& process)
30
32
33 virtual void produce(framework::Event& event);
34
35 private:
36 // name of collection for HcalTPs to be passed as input
37 std::string combined_quad_coll_name_;
38 // name of output collection
39 std::string pass_coll_name_;
40
41 std::string tp_coll_passname_;
42
43 std::string tp_coll_event_passname_;
44};
45} // namespace trigger
46
47#endif /* HCALTPSELECTOR_H */
Base classes for all user event processing components to extend.
Class implementing an event buffer system for storing event data.
Class that defines an HCal trigger cell detector ID.
Implements an event buffer system for storing event data.
Definition Event.h:42
Class which represents the process under execution.
Definition Process.h:36
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
virtual void produce(framework::Event &event)
Process the event and put new data products into it.
virtual void configure(framework::config::Parameters &ps)
Callback for the EventProcessor to configure itself from the given set of parameters.