fe4da5cc |
1 | #ifndef AliGenHalo_H |
2 | #define AliGenHalo_H |
3 | ///////////////////////////////////////////////////////// |
4 | // Manager and hits classes for set:MUON version 0 // |
5 | ///////////////////////////////////////////////////////// |
6 | #include "AliGenerator.h" |
7 | #include "TNamed.h" |
8 | #include "TF1.h" |
9 | #include "TArrayF.h" |
10 | #include "TTree.h" |
11 | |
12 | // Read background particles from a FLUKA boundary source file |
13 | |
14 | class AliGenHalo : public AliGenerator |
15 | { |
16 | |
17 | protected: |
9b153ba2 |
18 | FILE *fp; //! Pointer to file |
19 | const Text_t *fFileName; //!Choose the file |
fe4da5cc |
20 | |
21 | public: |
22 | AliGenHalo(); |
23 | AliGenHalo(Int_t npart); |
24 | virtual ~AliGenHalo(); |
25 | virtual void Init(); |
26 | virtual void SetFileName(const Text_t *filname) {fFileName=filname;} |
27 | virtual void Generate(); |
28 | ClassDef(AliGenHalo,1) |
29 | }; |
30 | #endif |
31 | |
32 | |
33 | |
34 | |
35 | |
36 | |