]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
New data member (cerenkov angle) in Cerenkov data structure.
authorjbarbosa <jbarbosa@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 26 May 2000 17:31:17 +0000 (17:31 +0000)
committerjbarbosa <jbarbosa@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 26 May 2000 17:31:17 +0000 (17:31 +0000)
RICH/DataStructures.cxx
RICH/DataStructures.h

index e2070eb9d2e641e43e23865fb827947bd2800707..b1dc46a3044f192d5b99cd5e75472487868fd488 100644 (file)
@@ -15,6 +15,9 @@
 
 /*
   $Log$
+  Revision 1.1  2000/04/19 13:32:48  morsch
+  Data classes for RICH (completely updated) (JB,AM)
+
 */
 
 
@@ -69,6 +72,7 @@ AliRICHCerenkov::AliRICHCerenkov(Int_t shunt, Int_t track, Int_t *vol, Float_t *
     fMomX=hits[14];
     fMomY=hits[15];
     fMomZ=hits[16];
+    fCerenkovAngle=hits[17];
 }
 
 //___________________________________________
index 22ea822aaddd41164f02437e3e5f868b65b75c44..6f78c985d144b60463068ed2fe2e9dad1751daba 100644 (file)
@@ -57,6 +57,7 @@ class AliRICHCerenkov: public AliHit {
     Float_t   fMomX;            // Local Momentum
     Float_t   fMomY;            // Local Momentum
     Float_t   fMomZ;            // Local Momentum
+    Float_t   fCerenkovAngle;   // Cerenkov Angle
  public:
     AliRICHCerenkov() {}
     AliRICHCerenkov(Int_t fIshunt, Int_t track, Int_t *vol, Float_t *Cerenkovs);