]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MONITOR/monitorGDC.cxx
Some extra lines to read PDC06 data.
[u/mrichter/AliRoot.git] / MONITOR / monitorGDC.cxx
index 59118ccb20bd7780d6276a0c4dd08efe976b06a3..1c138ab0cbe41b9a779f2368f9a2d212bbba894b 100644 (file)
@@ -42,7 +42,9 @@
 #include <AliHLTHoughBaseTransformer.h>
 #include <AliHLTHough.h>
 #include <AliHLTBenchmark.h>
+#include "AliESDVertex.h"
 #include <AliKalmanTrack.h>
+#include "AliITSgeomTGeo.h"
 #include "AliITSgeom.h"
 #include "AliMagF.h"
 #include "AliMagFMaps.h"
@@ -103,7 +105,8 @@ int main(int argc, char** argv)
   if (!AliHLTTransform::Init("./", kFALSE)) {
     ::Fatal("AliHLTTransform::Init", "HLT initialization failed");
   }
-  AliESD *esd = new AliESD;
+  AliESDEvent *esd = new AliESDEvent;
+  esd->CreateStdContent();
   //  AliKalmanTrack::SetConvConst(
   //     1000/0.299792458/AliHLTTransform::GetSolenoidField()
   //  );
@@ -169,7 +172,7 @@ int main(int argc, char** argv)
 
        // ITS clusterer and vertexer
        fBenchmark->Start("ITS Clusterer");
-       AliHLTITSclusterer clusterer(geom);
+       AliHLTITSclusterer clusterer(0);
        AliRawReader *itsrawreader=new AliRawReaderDate(ptr);
        TTree* treeClusters = new TTree("TreeL3ITSclusters"," "); //make a tree
        clusterer.Digits2Clusters(itsrawreader,treeClusters);
@@ -268,7 +271,7 @@ int main(int argc, char** argv)
        nglobaltracks += hough2->FillESD(esd);
 
        // ITS tracker
-       AliHLTITStracker itsTracker(geom);
+       AliHLTITStracker itsTracker(0);
        itsTracker.SetVertex(vtxPos,vtxErr);
 
        itsTracker.LoadClusters(treeClusters);