]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/STEER/AliModule.cxx
Removing the tasks from the digitization (Ruben)
[u/mrichter/AliRoot.git] / STEER / STEER / AliModule.cxx
index 5974f7ab08f5fa4774c04caef2d152429d76e194..b7dc2dca805e9479fb0a990fbe5846235c283a32 100644 (file)
@@ -52,6 +52,7 @@
 #include "AliMC.h"
 #include "AliSimulation.h"
 #include "AliRawDataHeader.h"
+#include "AliDigitizationInput.h"
 
 #include "AliDAQ.h"
 
@@ -69,7 +70,8 @@ AliModule::AliModule():
   fEnable(1),
   fMaxIterTrackRef(0),
   fCurrentIterTrackRef(0),
-  fRunLoader(0)
+  fRunLoader(0),
+  fDigInput(0)
 {
   //
   // Default constructor for the AliModule class
@@ -87,7 +89,8 @@ AliModule::AliModule(const char* name,const char *title):
   fEnable(1),
   fMaxIterTrackRef(0),
   fCurrentIterTrackRef(0),
-  fRunLoader(0)
+  fRunLoader(0),
+  fDigInput(0)
 {
   //
   // Normal constructor invoked by all Modules.