ImprovedOutputFile
Timing
dual_readout
llp
Line | |
---|
1 | #ifndef PileUpMerger_h
|
---|
2 | #define PileUpMerger_h
|
---|
3 |
|
---|
4 | /** \class PileUpMerger
|
---|
5 | *
|
---|
6 | * Merges particles from pile-up sample into event
|
---|
7 | *
|
---|
8 | *
|
---|
9 | * $Date: 2013-02-12 15:13:59 +0100 (Tue, 12 Feb 2013) $
|
---|
10 | * $Revision: 907 $
|
---|
11 | *
|
---|
12 | *
|
---|
13 | * \author M. Selvaggi - UCL, Louvain-la-Neuve
|
---|
14 | *
|
---|
15 | */
|
---|
16 |
|
---|
17 | #include "classes/DelphesModule.h"
|
---|
18 |
|
---|
19 | class TObjArray;
|
---|
20 | class DelphesPileUpReader;
|
---|
21 |
|
---|
22 | class PileUpMerger: public DelphesModule
|
---|
23 | {
|
---|
24 | public:
|
---|
25 |
|
---|
26 | PileUpMerger();
|
---|
27 | ~PileUpMerger();
|
---|
28 |
|
---|
29 | void Init();
|
---|
30 | void Process();
|
---|
31 | void Finish();
|
---|
32 |
|
---|
33 | private:
|
---|
34 |
|
---|
35 | Int_t fPileUpDistribution;
|
---|
36 | Double_t fMeanPileUp;
|
---|
37 | Double_t fZVertexSpread;
|
---|
38 |
|
---|
39 | DelphesPileUpReader *fReader;
|
---|
40 |
|
---|
41 | TIterator *fItInputArray; //!
|
---|
42 |
|
---|
43 | const TObjArray *fInputArray; //!
|
---|
44 |
|
---|
45 | TObjArray *fOutputArray; //!
|
---|
46 |
|
---|
47 | ClassDef(PileUpMerger, 1)
|
---|
48 | };
|
---|
49 |
|
---|
50 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.