Last change
on this file since 1360 was 1360, checked in by Pavel Demin, 11 years ago |
add Hector module
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Id Revision Date
|
File size:
698 bytes
|
Line | |
---|
1 | #ifndef Hector_h
|
---|
2 | #define Hector_h
|
---|
3 |
|
---|
4 | /** \class Hector
|
---|
5 | *
|
---|
6 | * Propagates candidates using Hector library.
|
---|
7 | *
|
---|
8 | * $Date: 2014-04-02 12:12:59 +0000 (Wed, 02 Apr 2014) $
|
---|
9 | * $Revision: 1360 $
|
---|
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;
|
---|
36 |
|
---|
37 | Double_t fBeamLineLength, fDistance;
|
---|
38 | Double_t fSigmaE, fSigmaX, fSigmaY;
|
---|
39 | Double_t fEtaMin;
|
---|
40 |
|
---|
41 | H_BeamLine *fBeamLine;
|
---|
42 |
|
---|
43 | TIterator *fItInputArray; //!
|
---|
44 |
|
---|
45 | const TObjArray *fInputArray; //!
|
---|
46 |
|
---|
47 | TObjArray *fOutputArray; //!
|
---|
48 |
|
---|
49 | ClassDef(Hector, 1)
|
---|
50 | };
|
---|
51 |
|
---|
52 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.