]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliDebugVolume.cxx
added function returning number in truncated gaussian (user passes mean, sigma and...
[u/mrichter/AliRoot.git] / STEER / AliDebugVolume.cxx
CommitLineData
6644b9ca 1/**************************************************************************
6eb8ed37 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
acd84897 16/* $Id$ */
6eb8ed37 17
116cbefd 18//-----------------------------------------------------------------------
116cbefd 19// Class to debug entry and exit from a volume
5d8718b8 20// Used by AliLego class
21// Author: A.Morsch
116cbefd 22//-----------------------------------------------------------------------
23
6eb8ed37 24#include "AliDebugVolume.h"
25
26ClassImp(AliDebugVolume)
27
28
6644b9ca 29//_______________________________________________________________________
30AliDebugVolume::AliDebugVolume():
31 fCopy(0),
32 fStep(0),
33 fX(0),
34 fY(0),
35 fZ(0),
36 fStatus(0)
6eb8ed37 37{
38 //
39 // Default constructor
40 //
41}
42
6644b9ca 43//_______________________________________________________________________
44AliDebugVolume::AliDebugVolume(const char *name, Int_t copy, Float_t step,
45 Float_t x, Float_t y, Float_t z, Int_t status):
46 TNamed(name, "Debug Volume"),
47 fCopy(copy),
48 fStep(step),
49 fX(x),
50 fY(y),
51 fZ(z),
52 fStatus(status)
6eb8ed37 53{
6644b9ca 54 //
55 // Normal constructor
56 //
6eb8ed37 57}
58
59
6644b9ca 60//_______________________________________________________________________
d0f1ee3b 61Bool_t AliDebugVolume::IsVEqual(const char* name, Int_t copy) const
6eb8ed37 62{
6644b9ca 63 return (copy == fCopy && strcmp(name, fName) == 0);
6eb8ed37 64}
65
6644b9ca 66//_______________________________________________________________________
07c4aae4 67const char* AliDebugVolume::Status() const
6eb8ed37 68{
5d8718b8 69 // Returns the status of the particle with respect to
70 // the current volume (Undefined, Entering, Exiting)
07c4aae4 71 const char* tmp;
6644b9ca 72 tmp = "Undefined";
73 if (fStatus == 1) tmp = "Entering";
74 if (fStatus == 2) tmp = "Exiting";
75 return tmp;
6eb8ed37 76}