X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=blobdiff_plain;f=PHOS%2FAliPHOSTrackSegmentMaker.cxx;h=6d9a4aa088a72b2b08abde8adf5ec776e572374a;hp=cae4c1d1a0936fa666dc3a0cd3864a687871d23d;hb=e191bb57c96a66bf4f60381b9a3f8c511bc6188e;hpb=15dfd8929cc449f4c0d849259583856bdec09007 diff --git a/PHOS/AliPHOSTrackSegmentMaker.cxx b/PHOS/AliPHOSTrackSegmentMaker.cxx index cae4c1d1a09..6d9a4aa088a 100644 --- a/PHOS/AliPHOSTrackSegmentMaker.cxx +++ b/PHOS/AliPHOSTrackSegmentMaker.cxx @@ -22,17 +22,15 @@ // --- ROOT system --- -#include "TGeometry.h" -#include "TFile.h" -#include "TTree.h" +//#include "TGeometry.h" + //#include "TFile.h" + //#include "TTree.h" // --- Standard library --- -#include // --- AliRoot header files --- -#include "AliRun.h" #include "AliPHOSTrackSegmentMaker.h" -#include "AliHeader.h" + //#include "AliHeader.h" ClassImp( AliPHOSTrackSegmentMaker) @@ -41,22 +39,24 @@ ClassImp( AliPHOSTrackSegmentMaker) AliPHOSTrackSegmentMaker:: AliPHOSTrackSegmentMaker() : TTask("","") { // ctor - fSplitFile= 0 ; - + fEventFolderName = "" ; + fFirstEvent = 0 ; + fLastEvent = -1 ; } //____________________________________________________________________________ -AliPHOSTrackSegmentMaker::AliPHOSTrackSegmentMaker(const char * headerFile, const char * name, const Bool_t toSplit): TTask(name, headerFile) +AliPHOSTrackSegmentMaker::AliPHOSTrackSegmentMaker(const TString alirunFileName, + const TString eventFolderName): + TTask("PHOS"+AliConfig::Instance()->GetTrackerTaskName(), alirunFileName), + fEventFolderName(eventFolderName) { // ctor - fSplitFile= 0 ; - fToSplit = toSplit ; + fFirstEvent = 0 ; + fLastEvent = -1 ; } //____________________________________________________________________________ AliPHOSTrackSegmentMaker::~AliPHOSTrackSegmentMaker() { - - fSplitFile = 0 ; }