]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliDebugVolume.cxx
Deleting the list of histograms in the destructor
[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
24
6eb8ed37 25#include "AliDebugVolume.h"
26
27ClassImp(AliDebugVolume)
28
29
6644b9ca 30//_______________________________________________________________________
31AliDebugVolume::AliDebugVolume():
32 fCopy(0),
33 fStep(0),
34 fX(0),
35 fY(0),
36 fZ(0),
37 fStatus(0)
6eb8ed37 38{
39 //
40 // Default constructor
41 //
42}
43
6644b9ca 44//_______________________________________________________________________
45AliDebugVolume::AliDebugVolume(const char *name, Int_t copy, Float_t step,
46 Float_t x, Float_t y, Float_t z, Int_t status):
47 TNamed(name, "Debug Volume"),
48 fCopy(copy),
49 fStep(step),
50 fX(x),
51 fY(y),
52 fZ(z),
53 fStatus(status)
6eb8ed37 54{
6644b9ca 55 //
56 // Normal constructor
57 //
6eb8ed37 58}
59
60
6644b9ca 61//_______________________________________________________________________
e2afb3b6 62Bool_t AliDebugVolume::IsVEqual(const char* name, const Int_t copy) const
6eb8ed37 63{
6644b9ca 64 return (copy == fCopy && strcmp(name, fName) == 0);
6eb8ed37 65}
66
6644b9ca 67//_______________________________________________________________________
6eb8ed37 68char* AliDebugVolume::Status() const
69{
5d8718b8 70 // Returns the status of the particle with respect to
71 // the current volume (Undefined, Entering, Exiting)
6644b9ca 72 char* tmp;
73 tmp = "Undefined";
74 if (fStatus == 1) tmp = "Entering";
75 if (fStatus == 2) tmp = "Exiting";
76 return tmp;
6eb8ed37 77}