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 {;} |
c9a8628a |
19 | |
20 | protected: |
21 | ClassDef(AliSlowNucleonModel,1) // Gray Particle Model |
22 | }; |
23 | #endif |
24 | |
25 | |
26 | |
27 | |
28 | |
29 | |