]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - RAW/AliCTPRawData.h
Moving CTP raw-data writer to libRAWdatasim in order to avoid circular deps with...
[u/mrichter/AliRoot.git] / RAW / AliCTPRawData.h
diff --git a/RAW/AliCTPRawData.h b/RAW/AliCTPRawData.h
new file mode 100644 (file)
index 0000000..8006519
--- /dev/null
@@ -0,0 +1,23 @@
+/* Copyright(c) 1998-2003, ALICE Experiment at CERN, All rights reserved. *
+ * See cxx source for full Copyright notice                               */
+
+/////////////////////////////////////////////////////////////
+// Class used to store the CTP (trigger) DDL raw data      //
+/////////////////////////////////////////////////////////////
+
+#ifndef AliTPCDDLRAWDATA_H
+#define AliTPCDDLRAWDATA_H
+
+
+class AliCTPRawData:public TObject{
+ public:
+  AliCTPRawData();                                       // default constructor
+  virtual ~AliCTPRawData() {;}                           // destructor
+  AliCTPRawData(const AliCTPRawData &source);            // copy constructor
+  AliCTPRawData& operator=(const AliCTPRawData &source); // assignment operator
+  void  RawData();  //This method is used to create the slides (sequence of files)
+
+  ClassDef(AliCTPRawData,1)
+};
+    
+#endif