]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVGEN/AliSlowNucleonModel.h
Numbers of slow nucleons either from model or user set.
[u/mrichter/AliRoot.git] / EVGEN / AliSlowNucleonModel.h
CommitLineData
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"
9class AliCollisionGeometry;
10
11class AliSlowNucleonModel : public TObject
12{
13public:
14 AliSlowNucleonModel() {;}
15 virtual ~AliSlowNucleonModel(){;}
16 virtual void GetNumberOfSlowNucleons(AliCollisionGeometry* geo,
17 Int_t& ngp, Int_t& ngn,
18 Int_t& nbp, Int_t& nbn) {;}
19
20 protected:
21 ClassDef(AliSlowNucleonModel,1) // Gray Particle Model
22};
23#endif
24
25
26
27
28
29