6255180c |
1 | #ifndef ALIGRAYPARTICLEMODEL_H |
2 | #define ALIGRAYPARTICLEMODEL_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 AliGrayParticleModel : public TObject |
12 | { |
13 | public: |
14 | AliGrayParticleModel() {;} |
15 | virtual ~AliGrayParticleModel(){;} |
16 | virtual void GetNumberOfGrayNucleons(AliCollisionGeometry* geo, Int_t& np, Int_t& nn) {;} |
17 | |
18 | protected: |
19 | ClassDef(AliGrayParticleModel,1) // Gray Particle Model |
20 | }; |
21 | #endif |
22 | |
23 | |
24 | |
25 | |
26 | |
27 | |