ImprovedOutputFile
Timing
dual_readout
llp
Last change
on this file since 22dc7fd was 22dc7fd, checked in by mselvaggi <mselvaggi@…>, 11 years ago |
timing implemented
|
-
Property mode
set to
100644
|
File size:
719 bytes
|
Rev | Line | |
---|
[d7d2da3] | 1 | #ifndef TrackPileUpSubtractor_h
|
---|
| 2 | #define TrackPileUpSubtractor_h
|
---|
| 3 |
|
---|
| 4 | /** \class TrackPileUpSubtractor
|
---|
| 5 | *
|
---|
| 6 | * Subtract pile-up contribution from tracks.
|
---|
| 7 | *
|
---|
| 8 | * $Date$
|
---|
| 9 | * $Revision$
|
---|
| 10 | *
|
---|
| 11 | *
|
---|
| 12 | * \author P. Demin - UCL, Louvain-la-Neuve
|
---|
| 13 | *
|
---|
| 14 | */
|
---|
| 15 |
|
---|
| 16 | #include "classes/DelphesModule.h"
|
---|
| 17 |
|
---|
| 18 | #include <map>
|
---|
| 19 |
|
---|
| 20 | class TIterator;
|
---|
| 21 | class TObjArray;
|
---|
| 22 |
|
---|
| 23 | class TrackPileUpSubtractor: public DelphesModule
|
---|
| 24 | {
|
---|
| 25 | public:
|
---|
| 26 |
|
---|
| 27 | TrackPileUpSubtractor();
|
---|
| 28 | ~TrackPileUpSubtractor();
|
---|
| 29 |
|
---|
| 30 | void Init();
|
---|
| 31 | void Process();
|
---|
| 32 | void Finish();
|
---|
| 33 |
|
---|
| 34 | private:
|
---|
| 35 |
|
---|
| 36 | Double_t fZVertexResolution;
|
---|
| 37 |
|
---|
| 38 | std::map< TIterator *, TObjArray * > fInputMap; //!
|
---|
| 39 |
|
---|
| 40 | ClassDef(TrackPileUpSubtractor, 1)
|
---|
[22dc7fd] | 41 |
|
---|
| 42 | TIterator *fItVertexInputArray; //!
|
---|
| 43 |
|
---|
| 44 | const TObjArray *fVertexInputArray; //!
|
---|
| 45 |
|
---|
[d7d2da3] | 46 | };
|
---|
| 47 |
|
---|
| 48 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.