]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVGEN/AliSlowNucleonModelExp.h
changed the eta cut for the hybrid
[u/mrichter/AliRoot.git] / EVGEN / AliSlowNucleonModelExp.h
CommitLineData
c9a8628a 1#ifndef ALISLOWNUCLEONMODELEXP_H
2#define ALISLOWNUCLEONMODELEXP_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
ac3faee4 8//
9// Experimental data inspired Gray Particle Model for p-Pb collisions
10// Fluctuations are calculated from a binomial distribution.
11// Author: A.Morsch
12//
13
c9a8628a 14#include "AliSlowNucleonModel.h"
15
16class AliCollisionGeometry;
17
18class AliSlowNucleonModelExp : public AliSlowNucleonModel
19{
20 public:
21 AliSlowNucleonModelExp();
22 virtual ~AliSlowNucleonModelExp(){;}
23 virtual void GetNumberOfSlowNucleons(AliCollisionGeometry* geo,
ac3faee4 24 Int_t& ngp, Int_t& ngn, Int_t& nbp, Int_t& nbn) const;
58776b75 25 virtual void GetNumberOfSlowNucleons2(AliCollisionGeometry* geo,
26 Int_t& ngp, Int_t& ngn, Int_t& nbp, Int_t& nbn) const;
c9a8628a 27 virtual void SetParameters(Float_t alpha1, Float_t alpha2);
230d85c6 28 virtual void SetSaturation(Bool_t saturation) {fApplySaturation = saturation;}
1ffc7bfa 29 virtual void SetSaturationParams(Int_t ngray=15, Int_t nblack=28)
230d85c6 30 {fnGraySaturation=ngray; fnBlackSaturation=nblack;}
c9a8628a 31
32 protected:
33 Float_t fP; // Number of protons in the target
34 Float_t fN; // Number of neutrons in the target
35 Float_t fAlphaGray; // Proportionality between gray particles and number of collisions
36 Float_t fAlphaBlack; // Proportionality between black particles and number of collisions
230d85c6 37 Bool_t fApplySaturation; // If true apply satoration to N_black vs. N_gray
38 Int_t fnGraySaturation; // N_gray value for N_black saturation
39 Int_t fnBlackSaturation; // N_black saturation value
c9a8628a 40
230d85c6 41 ClassDef(AliSlowNucleonModelExp,2) // Gray Particle Model (Experiment inspired)
c9a8628a 42};
43#endif
44
45
46
47
48
49
230d85c6 50