LDMX Software
PrimaryToEcalFilter.h
1#ifndef BIASING_PRIMARYTOECALFILTER_H
2#define BIASING_PRIMARYTOECALFILTER_H
3
4/*~~~~~~~~~~~~~~~~*/
5/* C++ StdLib */
6/*~~~~~~~~~~~~~~~~*/
7#include <string>
8
9/*~~~~~~~~~~~~~*/
10/* SimCore */
11/*~~~~~~~~~~~~~*/
12#include "SimCore/UserAction.h"
13
14/*~~~~~~~~~~~~~~~*/
15/* Framework */
16/*~~~~~~~~~~~~~~~*/
17#include "Framework/Logger.h"
18
19// Forward declarations
20class G4Step;
21
22namespace biasing {
23
31 public:
39 PrimaryToEcalFilter(const std::string& name,
41
44
55 void stepping(const G4Step* step) override;
56
58 std::vector<simcore::TYPE> getTypes() override {
59 return {simcore::TYPE::STEPPING};
60 }
61
62 private:
64 double threshold_;
65
66}; // PrimaryToEcalFilter
67
68} // namespace biasing
69
70#endif // BIASING_PRIMARYTOECALFILTER_H
User stepping action used to filter events where the primary particle falls below a threshold before ...
void stepping(const G4Step *step) override
Only process if the track is a primary (parentID == 0) and if the event is not aborted and the partic...
std::vector< simcore::TYPE > getTypes() override
Retrieve the type of actions this class defines.
double threshold_
Energy [MeV] below which a primary should be vetoed.
PrimaryToEcalFilter(const std::string &name, framework::config::Parameters &parameters)
Constructor.
Class encapsulating parameters for configuring a processor.
Definition Parameters.h:29
Interface that defines a user action.
Definition UserAction.h:43