]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TOF/AliTOFReconstructor.cxx
Update of the TOF code, see the presentation at
[u/mrichter/AliRoot.git] / TOF / AliTOFReconstructor.cxx
index 753f20d6a1ed7ff20152a731a9d8dc62b9fa0924..adb9832697302533abeec640bd5448b47cb5a2f0 100644 (file)
@@ -13,7 +13,7 @@
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
-/* $Id$ */
+/* $Id: AliTOFReconstructor.cxx 59948 2012-12-12 11:05:59Z fnoferin $ */
 
 ///////////////////////////////////////////////////////////////////////////////
 //                                                                           //
@@ -37,6 +37,7 @@
 #include "AliTOFtrackerMI.h"
 #include "AliTOFtracker.h"
 #include "AliTOFtrackerV1.h"
+#include "AliTOFtrackerV2.h"
 #include "AliTOFT0maker.h"
 #include "AliTOFReconstructor.h"
 #include "AliTOFTriggerMask.h"
@@ -299,6 +300,9 @@ AliTracker* AliTOFReconstructor::CreateTracker() const
   else if (selectedTracker.Contains("TrackerV1")) {
     tracker =  new AliTOFtrackerV1();
   }
+  else if (selectedTracker.Contains("TrackerV2")) {
+    tracker =  new AliTOFtrackerV2();
+  }
   else {
     tracker = new AliTOFtracker();
   }