]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliDebugVolume.cxx
Cleanup of STEER coding conventions
[u/mrichter/AliRoot.git] / STEER / AliDebugVolume.cxx
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
16 /* $Header$ */
17
18 //-----------------------------------------------------------------------
19 //
20 //    Class to debug entry and exit from a volume
21 //
22 //-----------------------------------------------------------------------
23
24
25 #include "AliDebugVolume.h"
26
27 ClassImp(AliDebugVolume)
28
29
30 //_______________________________________________________________________
31 AliDebugVolume::AliDebugVolume():
32   fCopy(0),
33   fStep(0),
34   fX(0),
35   fY(0),
36   fZ(0),
37   fStatus(0)
38 {
39   //
40   // Default constructor
41   //
42 }
43
44 //_______________________________________________________________________
45 AliDebugVolume::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)
54 {
55   //
56   // Normal constructor
57   //
58 }
59
60
61 //_______________________________________________________________________
62 Bool_t  AliDebugVolume::IsVEqual(const char* name, const Int_t copy) const
63 {
64   return (copy == fCopy && strcmp(name, fName) == 0);
65 }
66
67 //_______________________________________________________________________
68 char*   AliDebugVolume::Status() const
69 {
70   char* tmp;
71   tmp = "Undefined";
72   if (fStatus == 1) tmp = "Entering";
73   if (fStatus == 2) tmp = "Exiting";   
74   return tmp;
75 }