]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - VZERO/AliVZEROv4.cxx
- Fixing a problem in the tail effect, due to which
[u/mrichter/AliRoot.git] / VZERO / AliVZEROv4.cxx
index 6af2c2eb4c528c96a14571390dc45a32d6974741..fe2a2c1a02ed939274ec17c8891f6bc34e62f37c 100755 (executable)
 ClassImp(AliVZEROv4)
 
 //_____________________________________________________________________________
-AliVZEROv4:: AliVZEROv4():AliVZERO()
+AliVZEROv4:: AliVZEROv4():AliVZERO(),
+   fCellId(0),
+   fTrackPosition(),
+   fTrackMomentum(), 
+   fLightYield(93.75),
+   fLightAttenuation(0.05),
+   fnMeters(15.0),
+   fFibToPhot(0.3)
+   
 {
 // Standard default constructor 
 }
 
 //_____________________________________________________________________________
 AliVZEROv4::AliVZEROv4(const char *name, const char *title):
- AliVZERO(name,title)
+   AliVZERO(name,title),
+   fCellId(0),
+   fTrackPosition(),
+   fTrackMomentum(),
+   fLightYield(93.75),
+   fLightAttenuation(0.05),
+   fnMeters(15.0),
+   fFibToPhot(0.3)
+   
 {
 
 // Standard constructor for V-zero Detector  version 2
 
   AliDebug(2,"Create VZERO object");
-      
-  fLightYield              =  93.75; // Light yield in BC408 (93.75 eV per photon)
-  fLightAttenuation        =   0.05; // Light attenuation in fiber (0.05 per meter)
-  fnMeters                 =   15.0; // Number of meters of clear fibers to PM
-  fFibToPhot               =    0.3; // Attenuation at fiber-photocathode interface
+//       
+//   fLightYield              =  93.75; // Light yield in BC408 (93.75 eV per photon)
+//   fLightAttenuation        =   0.05; // Light attenuation in fiber (0.05 per meter)
+//   fnMeters                 =   15.0; // Number of meters of clear fibers to PM
+//   fFibToPhot               =    0.3; // Attenuation at fiber-photocathode interface
 }
 
 //_____________________________________________________________________________