]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliDebugVolume.cxx
New class for linear reasiduals minimization based on root TLinearFitter. Possibility...
[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 /* $Id$ */
17
18 //-----------------------------------------------------------------------
19 //    Class to debug entry and exit from a volume
20 //    Used by AliLego class
21 //    Author: A.Morsch
22 //-----------------------------------------------------------------------
23
24 #include "AliDebugVolume.h"
25
26 ClassImp(AliDebugVolume)
27
28
29 //_______________________________________________________________________
30 AliDebugVolume::AliDebugVolume():
31   fCopy(0),
32   fStep(0),
33   fX(0),
34   fY(0),
35   fZ(0),
36   fStatus(0)
37 {
38   //
39   // Default constructor
40   //
41 }
42
43 //_______________________________________________________________________
44 AliDebugVolume::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)
53 {
54   //
55   // Normal constructor
56   //
57 }
58
59
60 //_______________________________________________________________________
61 Bool_t  AliDebugVolume::IsVEqual(const char* name, Int_t copy) const
62 {
63   return (copy == fCopy && strcmp(name, fName) == 0);
64 }
65
66 //_______________________________________________________________________
67 const char*   AliDebugVolume::Status() const
68 {
69   // Returns the status of the particle with respect to 
70   // the current volume (Undefined, Entering, Exiting) 
71   const char* tmp;
72   tmp = "Undefined";
73   if (fStatus == 1) tmp = "Entering";
74   if (fStatus == 2) tmp = "Exiting";   
75   return tmp;
76 }