LDMX Software
EcalRawEncoder.h
1#ifndef ECAL_ECALRAWENCODER_H_
2#define ECAL_ECALRAWENCODER_H_
3
4//----------//
5// LDMX //
6//----------//
8
9namespace ecal {
10
15 public:
19 EcalRawEncoder(const std::string& name, framework::Process& process);
20
24 virtual ~EcalRawEncoder();
25
29
32 virtual void produce(framework::Event& event);
33
34 private:
36 std::string input_name_;
38 std::string input_pass_;
40 std::string output_name_;
43};
44} // namespace ecal
45
46#endif
Base classes for all user event processing components to extend.
std::string output_name_
output object to put onto event bus
std::string input_pass_
input pass of creating encoded data
virtual void configure(framework::config::Parameters &)
Callback for the EventProcessor to configure itself from the given set of parameters.
virtual ~EcalRawEncoder()
Destructor.
int roc_version_
version of HGC ROC we are decoding
virtual void produce(framework::Event &event)
Process the event and put new data products into it.
std::string input_name_
input object of encoded data
Implements an event buffer system for storing event data.
Definition Event.h:41
Class which represents the process under execution.
Definition Process.h:36
Base class for a module which produces a data product.
Class encapsulating parameters for configuring a processor.
Definition Parameters.h:27