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 | //----------------------------------------------------------------------- |
19 | // |
20 | // Class to debug entry and exit from a volume |
21 | // |
22 | //----------------------------------------------------------------------- |
23 | |
24 | |
6eb8ed37 |
25 | #include "AliDebugVolume.h" |
26 | |
27 | ClassImp(AliDebugVolume) |
28 | |
29 | |
6644b9ca |
30 | //_______________________________________________________________________ |
31 | AliDebugVolume::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 | //_______________________________________________________________________ |
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) |
6eb8ed37 |
54 | { |
6644b9ca |
55 | // |
56 | // Normal constructor |
57 | // |
6eb8ed37 |
58 | } |
59 | |
60 | |
6644b9ca |
61 | //_______________________________________________________________________ |
e2afb3b6 |
62 | Bool_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 |
68 | char* AliDebugVolume::Status() const |
69 | { |
6644b9ca |
70 | char* tmp; |
71 | tmp = "Undefined"; |
72 | if (fStatus == 1) tmp = "Entering"; |
73 | if (fStatus == 2) tmp = "Exiting"; |
74 | return tmp; |
6eb8ed37 |
75 | } |