6#include "Framework/Configure/Parameters.h"
9#include "Tracking/Digitization/PulseShape.h"
10#include "Tracking/Digitization/SiStripConstants.h"
11#include "Tracking/Digitization/StripPulseFitter.h"
13namespace tracking::reco {
56 std::string in_collection_{
"RawSiStripHits"};
57 std::string in_pass_{
""};
58 std::string out_collection_{
"FittedSiStripHits"};
61 double t_scan_min_ns_{-50.0};
62 double t_scan_max_ns_{150.0};
63 double t_scan_step_ns_{1.0};
66 double max_chi2_ndf_{-1.0};
69 std::unique_ptr<tracking::digitization::PulseShape> pulse_shape_;
70 std::unique_ptr<tracking::digitization::StripPulseFitter> fitter_;
Base classes for all user event processing components to extend.
Class implementing an event buffer system for storing event data.
Implements an event buffer system for storing event data.
Class which represents the process under execution.
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.
Fits a pulse shape to each RawSiStripHit and produces FittedSiStripHits.
void produce(framework::Event &event) override
Process the event and put new data products into it.
void onProcessStart() override
Callback for the EventProcessor to take any necessary action when the processing of events starts,...
void configure(framework::config::Parameters ¶meters) override
Callback for the EventProcessor to configure itself from the given set of parameters.