]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDrawStreamBase.cxx
Remove obsolete class
[u/mrichter/AliRoot.git] / TRD / AliTRDrawStreamBase.cxx
index 75840b0697db95773ddbc7af374a220da5e06936..1e3ddce1489a64c4d37b4cb7e947fef3e29f0160 100644 (file)
@@ -29,7 +29,6 @@
 ///////////////////////////////////////////////////////////////////////////////
 
 #include "AliTRDrawStreamOld.h"
-#include "AliTRDrawFastStream.h"
 #include "AliTRDrawStream.h"
 
 #include "AliTRDrawStreamBase.h"
@@ -103,8 +102,8 @@ AliTRDrawStreamBase *AliTRDrawStreamBase::GetRawStream()
   if (fgRawStreamVersion == kTRDsimStream)
     return new AliTRDrawStreamOld();
   
-  if (fgRawStreamVersion == kTRDfastStream)
-    return new AliTRDrawFastStream();
+  //if (fgRawStreamVersion == kTRDfastStream)
+  //  return new AliTRDrawFastStream();
 
   if (fgRawStreamVersion == kTRDdefaultStream)
     return new AliTRDrawStream();
@@ -126,8 +125,8 @@ AliTRDrawStreamBase *AliTRDrawStreamBase::GetRawStream(AliRawReader *reader)
     return new AliTRDrawStreamOld(reader);
 
 
-  if (fgRawStreamVersion == kTRDfastStream){
-    return new AliTRDrawFastStream(reader);}
+  //if (fgRawStreamVersion == kTRDfastStream){
+  //  return new AliTRDrawFastStream(reader);}
 
   if (fgRawStreamVersion == kTRDdefaultStream)
     return new AliTRDrawStream(reader);
@@ -153,8 +152,8 @@ void AliTRDrawStreamBase::SetRawStreamVersion(const char *opt)
   if (strstr(opt, "real" ) != 0 || strstr(opt, "REAL") != 0) 
     fgRawStreamVersion = kTRDrealStream; 
 
-  if (strstr(opt, "fast" ) != 0 || strstr(opt, "FAST") != 0)
-    fgRawStreamVersion = kTRDfastStream;
+  //if (strstr(opt, "fast" ) != 0 || strstr(opt, "FAST") != 0)
+  //  fgRawStreamVersion = kTRDfastStream;
 
   if (strstr(opt, "default" ) != 0 || strstr(opt, "DEFAULT") != 0)
     fgRawStreamVersion = kTRDdefaultStream;