a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
LightLeptonPreselector.hpp
Go to the documentation of this file.
1/*
2 * LightLeptonPreselector.hpp
3 *
4 * Created on: Jan 25, 2013
5 * Author: Ben O'Leary (benjamin.oleary@gmail.com)
6 */
7
8#ifndef LIGHTLEPTONPRESELECTOR_HPP_
9#define LIGHTLEPTONPRESELECTOR_HPP_
10
12
13namespace LHPC
14{
15 namespace LHEF
16 {
17 namespace PreselectorClass
18 {
19 // this selects electrons, positrons, muons, & antimuons.
21 {
22 public:
24 double const transverseMomentumCut = 0.0,
25 double const pseudorapidityCut = -1.0 );
26 virtual
28 };
29
30 } /* namespace PreselectorClass */
31 } /* namespace LHEF */
32} /* namespace LHPC */
33#endif /* LIGHTLEPTONPRESELECTOR_HPP_ */
LightLeptonPreselector(LhefParser &lhefParser, double const transverseMomentumCut=0.0, double const pseudorapidityCut=-1.0)