ImprovedOutputFile
Timing
dual_readout
llp
Last change
on this file since 82575a3 was 8f7db23, checked in by pavel <pavel@…>, 11 years ago |
add HectorHit class and corresponding ROOT tree branch
|
-
Property mode
set to
100644
|
File size:
734 bytes
|
Rev | Line | |
---|
[5b822e5] | 1 | #ifndef Hector_h
|
---|
| 2 | #define Hector_h
|
---|
| 3 |
|
---|
| 4 | /** \class Hector
|
---|
| 5 | *
|
---|
| 6 | * Propagates candidates using Hector library.
|
---|
| 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 | class TIterator;
|
---|
| 19 | class TObjArray;
|
---|
| 20 | class H_BeamLine;
|
---|
| 21 |
|
---|
| 22 | class Hector: public DelphesModule
|
---|
| 23 | {
|
---|
| 24 | public:
|
---|
| 25 |
|
---|
| 26 | Hector();
|
---|
| 27 | ~Hector();
|
---|
| 28 |
|
---|
| 29 | void Init();
|
---|
| 30 | void Process();
|
---|
| 31 | void Finish();
|
---|
| 32 |
|
---|
| 33 | private:
|
---|
| 34 |
|
---|
| 35 | Int_t fDirection;
|
---|
[8f7db23] | 36 |
|
---|
[5b822e5] | 37 | Double_t fBeamLineLength, fDistance;
|
---|
[8f7db23] | 38 | Double_t fOffsetX, fOffsetS;
|
---|
| 39 | Double_t fSigmaE, fSigmaX, fSigmaY, fSigmaT;
|
---|
[5b822e5] | 40 | Double_t fEtaMin;
|
---|
[8f7db23] | 41 |
|
---|
[5b822e5] | 42 | H_BeamLine *fBeamLine;
|
---|
| 43 |
|
---|
| 44 | TIterator *fItInputArray; //!
|
---|
| 45 |
|
---|
| 46 | const TObjArray *fInputArray; //!
|
---|
| 47 |
|
---|
| 48 | TObjArray *fOutputArray; //!
|
---|
| 49 |
|
---|
| 50 | ClassDef(Hector, 1)
|
---|
| 51 | };
|
---|
| 52 |
|
---|
| 53 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.