Fork me on GitHub

source: svn/trunk/modules/PileUpMerger.h@ 1349

Last change on this file since 1349 was 1345, checked in by Michele Selvaggi, 11 years ago

timing implemented

File size: 887 bytes
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
19class TObjArray;
20class DelphesPileUpReader;
21class DelphesTF2;
22
23class PileUpMerger: public DelphesModule
24{
25public:
26
27 PileUpMerger();
28 ~PileUpMerger();
29
30 void Init();
31 void Process();
32 void Finish();
33
34private:
35
36 Int_t fPileUpDistribution;
37 Double_t fMeanPileUp;
38
39 Double_t fZVertexSpread;
40 Double_t fTVertexSpread;
41
42 DelphesPileUpReader *fReader;
43
44 DelphesTF2 *fFunction; //!
45
46 TIterator *fItInputArray; //!
47
48 const TObjArray *fInputArray; //!
49
50 TObjArray *fParticleOutputArray; //!
51 TObjArray *fVertexOutputArray; //!
52
53 ClassDef(PileUpMerger, 1)
54};
55
56#endif
Note: See TracBrowser for help on using the repository browser.