ATLAS Offline Software
Loading...
Searching...
No Matches
DileptonInvariantMassWindowSelectorAlg.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3*/
4
6
7#ifndef EVENT_SELECTOR_DILEPTONINVARIANTMASSWINDOWSELECTORALG_H
8#define EVENT_SELECTOR_DILEPTONINVARIANTMASSWINDOWSELECTORALG_H
9
10// Algorithm includes
18
19// Framework includes
22
23namespace CP {
24
28
30
32 public:
33 DileptonInvariantMassWindowSelectorAlg(const std::string &name, ISvcLocator *pSvcLocator);
34 virtual StatusCode initialize() override;
35 virtual StatusCode execute() override;
36
37 private:
38
40 Gaudi::Property<float> m_mllupper {this, "highMLL", 0., "MLL < HIGH (in MeV)"};
41
43 Gaudi::Property<float> m_mlllower {this, "lowMLL", 0., "MLL > LOW (in MeV)"};
44
46 Gaudi::Property<bool> m_veto {this, "vetoMode", false, "switch to veto-mode"};
47
49 Gaudi::Property<bool> m_useDressedProperties{this, "useDressedProperties", false,
50 "whether to use dressed electron and muon kinematics rather than simple "
51 "P4 kinematics"};
52
55
58 this, "electrons", "", "the electron container to use"
59 };
60
63 this, "electronSelection", "", "the selection on the input electrons"
64 };
65
68 this, "muons", "", "the muon container to use"
69 };
70
73 this, "muonSelection", "", "the selection on the input muons"
74 };
75
78 this, "eventInfo", "EventInfo", "the EventInfo container to read selection decisions from"
79 };
80
83 this, "eventPreselection", "SetMe", "name of the preselection to check before applying this one"
84 };
85
88 this, "decorationName", "SetMe", "decoration name for the MLL selector"
89 };
90
91 }; // class
92} // namespace CP
93
94#endif // EVENT_SELECTOR_DILEPTONINVARIANTMASSSELECTORALG_H
Gaudi::Property< float > m_mllupper
the upper limit of the MLL window
CP::SysWriteSelectionHandle m_decoration
the output selection decoration
Gaudi::Property< float > m_mlllower
the lower limit of the MLL window
CP::SysReadSelectionHandle m_electronSelection
the electrons selection
CP::SysReadSelectionHandle m_muonSelection
the muons selection
CP::SysReadHandle< xAOD::EventInfo > m_eventInfoHandle
the event info handle
CP::SysReadHandle< xAOD::IParticleContainer > m_muonsHandle
the muons handle
DileptonInvariantMassWindowSelectorAlg(const std::string &name, ISvcLocator *pSvcLocator)
the standard constructor
CP::SysReadSelectionHandle m_preselection
the preselection
CP::SysReadHandle< xAOD::IParticleContainer > m_electronsHandle
the electrons handle
Gaudi::Property< bool > m_useDressedProperties
use dressed kinematics
Gaudi::Property< bool > m_veto
whether to veto events instead of selecting them
a class managing the property to configure the list of systematics to process
a data handle for reading systematics varied input data
a data handle for reading systematically varied selection properties from objects
a data handle for writing systematically varied selection properties from objects
the (new) base class for EventLoop algorithms
Select isolated Photons, Electrons and Muons.