]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - VZERO/AliVZEROdigit.cxx
New view point
[u/mrichter/AliRoot.git] / VZERO / AliVZEROdigit.cxx
index 0094ce83200be29393d474f6ecfede88ec336e9d..8f90f2c844e7389a5df69c944601364aed8b9daa 100644 (file)
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
-
-#include "AliVZERO.h"
 #include "AliVZEROdigit.h"
-#include "AliRun.h"
+
 ClassImp(AliVZEROdigit)
 
 AliVZEROdigit::AliVZEROdigit(Int_t* tracks, Int_t *digits):
   AliDigit(tracks){
   
   //
-  // Creates VZERO digit
-  // The creator for the AliVZEROdigit class. This routine fills the
-  // AliVZEROdigit data members from the array digits. 
+  // Creates VZERO digits
+  //
+  // Fills the AliVZEROdigit data members from the array digits. 
   //
   
   fTrack      = tracks[0];
   fEvent      = digits[0];
-  fMulti      = digits[1];
-  fNCerenkovs = digits[2];
   
 }