]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PHOS/AliPHOSTrackSegmentMaker.cxx
08-feb-2003 NvE Class AliSignal modified such that the maximum number of signal slots is
[u/mrichter/AliRoot.git] / PHOS / AliPHOSTrackSegmentMaker.cxx
index b8571ad4ef3df1181f49f1669bc790bb35c3359e..cae4c1d1a0936fa666dc3a0cd3864a687871d23d 100644 (file)
 
 
 // --- ROOT system ---
+#include "TGeometry.h"
+#include "TFile.h"
+#include "TTree.h"
 
 // --- Standard library ---
+#include <stdlib.h>   
 
 // --- AliRoot header files ---
+#include "AliRun.h" 
 #include "AliPHOSTrackSegmentMaker.h"
+#include "AliHeader.h" 
 
 ClassImp( AliPHOSTrackSegmentMaker) 
 
 
 //____________________________________________________________________________
AliPHOSTrackSegmentMaker:: AliPHOSTrackSegmentMaker() : TTask()
 AliPHOSTrackSegmentMaker:: AliPHOSTrackSegmentMaker() : TTask("","")
 {
+  // ctor
+  fSplitFile= 0 ; 
+
+}
+
+//____________________________________________________________________________
+AliPHOSTrackSegmentMaker::AliPHOSTrackSegmentMaker(const char * headerFile, const char * name, const Bool_t toSplit): TTask(name, headerFile)
+{
+  // ctor
+  fSplitFile= 0 ; 
+  fToSplit  = toSplit ;
 }
+
 //____________________________________________________________________________
-AliPHOSTrackSegmentMaker::AliPHOSTrackSegmentMaker(char * header,char * branch): TTask("AliPHOSTrackSegmentMaker","")
+AliPHOSTrackSegmentMaker::~AliPHOSTrackSegmentMaker()
 {
+   
+      fSplitFile = 0 ;
 }