]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TMEVSIM/AliMevSimParticle.cxx
effc++ corrections
[u/mrichter/AliRoot.git] / TMEVSIM / AliMevSimParticle.cxx
CommitLineData
36b81802 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
803d1ab0 16/* $Id$ */
36b81802 17
18#include "AliMevSimParticle.h"
19
20
21ClassImp(AliMevSimParticle)
22
23
24///////////////////////////////////////////////////////////////////////////////////////
25
b15b3ba3 26AliMevSimParticle::AliMevSimParticle() :
27 TMevSimPartTypeParams(),
28 fPdg(),
29 fConv(0)
30{
31
36b81802 32}
33
34///////////////////////////////////////////////////////////////////////////////////////
35
36AliMevSimParticle::AliMevSimParticle(PDG_t pdg, Int_t multmean, Int_t multvc,
37 Float_t tempmean, Float_t tempstdev, Float_t sigmamean,
b15b3ba3 38 Float_t sigmastdev, Float_t expvelmean, Float_t expvelstdev) :
39
40 TMevSimPartTypeParams(0, multmean, multvc, tempmean, tempstdev,
41 sigmamean, sigmastdev, expvelmean, expvelstdev),
36b81802 42
b15b3ba3 43 fPdg(pdg),
44 fConv(new TMevSimConverter())
45{
36b81802 46
47
48 // Calculate geant ID from pdg
36b81802 49 if (fConv) fGPid = fConv->IdFromPDG(pdg);
50
51}
52
53///////////////////////////////////////////////////////////////////////////////////////
54
55AliMevSimParticle::~AliMevSimParticle() {
56}
57
58///////////////////////////////////////////////////////////////////////////////////////
59
60void AliMevSimParticle::SetPDG(PDG_t pdg) {
61
62 fPdg = pdg;
63 fGPid = fConv->IdFromPDG(pdg);
64}
65
66///////////////////////////////////////////////////////////////////////////////////////
67
68PDG_t AliMevSimParticle::GetPDG() {
69
70 fPdg = (PDG_t)fConv->PDGFromId(fGPid);
71 return fPdg;
72}
73
74///////////////////////////////////////////////////////////////////////////////////////
75
76
77
78