7#ifndef TRIGECALCLUSTERPRODUCER_H
8#define TRIGECALCLUSTERPRODUCER_H
12#include "Framework/Configure/Parameters.h"
17#include "TProfile2D.h"
40 void setupMaps(
bool isX);
41 float getP(
bool isX,
float e,
float d);
42 float getPx(
float e,
float d) {
return getP(
true, e, d); }
43 float getPy(
float e,
float d) {
return getP(
false, e, d); }
47 std::string sp_coll_name_;
49 std::string cluster_coll_name_;
51 std::string ele_coll_name_;
53 std::string target_sp_passname_;
54 std::string cluster_coll_passname_;
55 std::string cluster_collname_events_passname_;
56 std::string sp_collname_events_passname_;
58 std::string prop_map_name_;
59 TProfile2D* prop_mapx_{
nullptr};
60 TProfile2D* prop_mapy_{
nullptr};
61 std::vector<TF1*> fits_x_{};
62 std::vector<TF1*> fits_y_{};
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.
virtual void onProcessStart()
Callback for the EventProcessor to take any necessary action when the processing of events starts,...
virtual void produce(framework::Event &event)
Process the event and put new data products into it.
virtual void onProcessEnd()
Callback for the EventProcessor to take any necessary action when the processing of events finishes,...
virtual void configure(framework::config::Parameters &ps)
Callback for the EventProcessor to configure itself from the given set of parameters.