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 spCollName_;
49 std::string clusterCollName_;
51 std::string eleCollName_;
53 std::string propMapName_;
54 TProfile2D* propMapx_{
nullptr};
55 TProfile2D* propMapy_{
nullptr};
56 std::vector<TF1*> fitsX_{};
57 std::vector<TF1*> fitsY_{};
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.
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.