]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliDigitNew.cxx
Cast to AliMCParticle*
[u/mrichter/AliRoot.git] / STEER / AliDigitNew.cxx
index 387497f6f27547e9256a9eda0eaf3751bd4fd39b..5243a81d0c6acad122e52ca7e219411caff1d918 100644 (file)
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
-/*
-$Log$
-*/
+/* $Id$ */
+
+//-----------------------------------------------------------------------
+//    Proposal for a new digitisation abstract class
+//    Used by EMCAL, PHOS, PMD, TOF digitizers and/or rec. points
+//    Author:
+//-----------------------------------------------------------------------
 
 #include "AliDigitNew.h"
  
 ClassImp(AliDigitNew)
 
-AliDigitNew::AliDigitNew()
-{
-}
-
-AliDigitNew::AliDigitNew(Int_t *tracks)
+//_______________________________________________________________________
+AliDigitNew::AliDigitNew():
+  TObject(),
+  fAmp(0),
+  fId(-1),
+  fIndexInList(-1)
 {
-  fTracks[0] = tracks[0];
-  fTracks[1] = tracks[1];
-  fTracks[2] = tracks[2];
+  //
+  // Default constructor
+  //
 }