c9a8628a |
1 | #ifndef ALISLOWNUCLEONMODEL_H |
2 | #define ALISLOWNUCLEONMODEL_H |
3 | /* Copyright(c) 198-1999, ALICE Experiment at CERN, All rights reserved. * |
4 | * See cxx source for full Copyright notice */ |
5 | |
6 | /* $Id$ */ |
7 | |
8 | #include "TObject.h" |
9 | class AliCollisionGeometry; |
10 | |
11 | class AliSlowNucleonModel : public TObject |
12 | { |
13 | public: |
14 | AliSlowNucleonModel() {;} |
15 | virtual ~AliSlowNucleonModel(){;} |
198bb1c7 |
16 | virtual void GetNumberOfSlowNucleons(AliCollisionGeometry* /*geo*/, |
17 | Int_t& /*ngp*/, Int_t& /*ngn*/, |
d64dff25 |
18 | Int_t& /*nbp*/, Int_t& /*nbn*/) const {;} |
58776b75 |
19 | virtual void GetNumberOfSlowNucleons2(AliCollisionGeometry* /*geo*/, |
20 | Int_t& /*ngp*/, Int_t& /*ngn*/, |
21 | Int_t& /*nbp*/, Int_t& /*nbn*/) const {;} |
c3e58d2c |
22 | virtual void GetNumberOfSlowNucleons2s(AliCollisionGeometry* /*geo*/, |
23 | Int_t& /*ngp*/, Int_t& /*ngn*/, |
24 | Int_t& /*nbp*/, Int_t& /*nbn*/) const {;} |
c9a8628a |
25 | |
26 | protected: |
27 | ClassDef(AliSlowNucleonModel,1) // Gray Particle Model |
28 | }; |
29 | #endif |
30 | |
31 | |
32 | |
33 | |
34 | |
35 | |