]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MONITOR/monitorGDC.cxx
Adding missing include
[u/mrichter/AliRoot.git] / MONITOR / monitorGDC.cxx
index 0d044987bdf0e0167ba4d358f790e40ae4ce16fc..c813b7c113501ea769c244e640f851ea9db45a70 100644 (file)
@@ -44,6 +44,7 @@
 #include <AliHLTBenchmark.h>
 #include <AliKalmanTrack.h>
 #include "AliITSgeomTGeo.h"
+#include "AliITSgeom.h"
 #include "AliMagF.h"
 #include "AliMagFMaps.h"
 #include <AliHLTITSclusterer.h>
@@ -107,7 +108,7 @@ int main(int argc, char** argv)
   //  AliKalmanTrack::SetConvConst(
   //     1000/0.299792458/AliHLTTransform::GetSolenoidField()
   //  );
-  AliITSgeomTGeo *geom = new AliITSgeomTGeo();
+  AliITSgeom *geom = new AliITSgeom();
   geom->ReadNewFile("$ALICE_ROOT/ITS/ITSgeometry_vPPRasymmFMD.det");
   if (!geom) return 1;
   Int_t sfield = 0;
@@ -169,7 +170,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 +269,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);