Fork me on GitHub

source: git/modules/Hector.h@ 5b822e5

ImprovedOutputFile Timing dual_readout llp
Last change on this file since 5b822e5 was 5b822e5, checked in by pavel <pavel@…>, 10 years ago

add Hector module

  • Property mode set to 100644
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$
9 * $Revision$
10 *
11 *
12 * \author P. Demin - UCL, Louvain-la-Neuve
13 *
14 */
15
16#include "classes/DelphesModule.h"
17
18class TIterator;
19class TObjArray;
20class H_BeamLine;
21
22class Hector: public DelphesModule
23{
24public:
25
26 Hector();
27 ~Hector();
28
29 void Init();
30 void Process();
31 void Finish();
32
33private:
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.