Fork me on GitHub

source: git/modules/LLPFilter.h@ cc8716b

Last change on this file since cc8716b was cc8716b, checked in by GitHub <noreply@…>, 3 years ago

Update to handle CMS endcap muon detector showers for long-lived particles (#103)

Co-authored-by: christinaw97 <christina.wang@…>

  • Property mode set to 100644
File size: 2.2 KB
Line 
1/*
2 * Delphes: a framework for fast simulation of a generic collider experiment
3 * Copyright (C) 2012-2014 Universite catholique de Louvain (UCL), Belgium
4 *
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19//------------------------------------------------------------------------------
20
21#ifndef LLPFilter_h
22#define LLPFilter_h
23
24
25/** \class LLPFilter
26 *
27 * Filter LLPs with particular PDG ID/status and calculate the EM and hadronic energy of LLP based on decay particles
28 * The classification of EM and hadronic energy of LLP is based on instructions from the HEPData entry for the CMS paper searching
29 * for neutral LLPs in the CMS endcap muon detectors: https://www.hepdata.net/record/104408
30 *
31 * \author Christina Wang
32 *
33 */
34
35#include "classes/DelphesModule.h"
36#include <vector>
37
38class TIterator;
39class TObjArray;
40
41class LLPFilter: public DelphesModule
42{
43public:
44 LLPFilter();
45 ~LLPFilter();
46
47 void Init();
48 void Process();
49 void Finish();
50
51private:
52 Double_t fPTMin; //!
53 Bool_t fRequireDecayRegion;
54 Double_t fDecayRegionRMax;
55 Double_t fDecayRegionRMin;
56 Double_t fDecayRegionZMax;
57 Double_t fDecayRegionZMin;
58 Double_t fDecayRegionEtaMax;
59 Double_t fDecayRegionEtaMin;
60 Int_t fDaughterNumber;
61 Bool_t fInvert; //!
62 Bool_t fRequireStatus; //!
63 Int_t fStatus; //!
64 Bool_t fRequireCharge; //!
65 Int_t fCharge; //!
66 Bool_t fRequireNotPileup; //!
67
68 std::vector<Int_t> fPdgCodes;
69
70 TIterator *fItInputArray; //!
71
72 const TObjArray *fInputArray; //!
73
74 TIterator *fItParticleInputArray;
75 const TObjArray *fParticleInputArray;
76
77 TObjArray *fOutputArray; //!
78
79 ClassDef(LLPFilter, 1)
80};
81
82#endif
Note: See TracBrowser for help on using the repository browser.