]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Put an empty object for AliTRDCalFEE
authorcblume <cblume@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 15 Dec 2009 13:01:31 +0000 (13:01 +0000)
committercblume <cblume@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 15 Dec 2009 13:01:31 +0000 (13:01 +0000)
OCDB/TRD/Calib/FEE/Run0_999999999_v0_s0.root
TRD/Cal/AliTRDCalFEE.cxx [new file with mode: 0644]
TRD/Cal/AliTRDCalFEE.h [new file with mode: 0644]
TRD/TRDbaseLinkDef.h
TRD/libTRDbase.pkg

index b03bb53e1f198740129810a676e7e0fee454d350..9d7e6eedd150489db55df806e9c7d39819440a12 100644 (file)
Binary files a/OCDB/TRD/Calib/FEE/Run0_999999999_v0_s0.root and b/OCDB/TRD/Calib/FEE/Run0_999999999_v0_s0.root differ
diff --git a/TRD/Cal/AliTRDCalFEE.cxx b/TRD/Cal/AliTRDCalFEE.cxx
new file mode 100644 (file)
index 0000000..5bd6cf7
--- /dev/null
@@ -0,0 +1,47 @@
+/**************************************************************************
+ * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+ *                                                                        *
+ * Author: The ALICE Off-line Project.                                    *
+ * Contributors are mentioned in the code where appropriate.              *
+ *                                                                        *
+ * Permission to use, copy, modify and distribute this software and its   *
+ * documentation strictly for non-commercial purposes is hereby granted   *
+ * without fee, provided that the above copyright notice appears in all   *
+ * copies and that both the copyright notice and this permission notice   *
+ * appear in the supporting documentation. The authors make no claims     *
+ * about the suitability of this software for any purpose. It is          *
+ * provided "as is" without express or implied warranty.                  *
+ **************************************************************************/
+
+/* $Id: AliTRDCalFEE.cxx 18952 2007-06-08 11:36:12Z cblume $ */
+
+///////////////////////////////////////////////////////////////////////////////
+//                                                                           //
+//  TRD calibration class for TRD FEE parameters                             //
+//  Empty dummy class for backward compability                               //
+//                                                                           //
+///////////////////////////////////////////////////////////////////////////////
+
+#include "AliTRDCalFEE.h"
+
+ClassImp(AliTRDCalFEE)
+
+//_____________________________________________________________________________
+AliTRDCalFEE::AliTRDCalFEE()
+  :TNamed()
+{
+  //
+  // AliTRDCalFEE default constructor
+  //
+
+}
+
+//_____________________________________________________________________________
+AliTRDCalFEE::AliTRDCalFEE(const Text_t *name, const Text_t *title)
+  :TNamed(name,title)
+{
+  //
+  // AliTRDCalFEE constructor
+  //
+
+}
diff --git a/TRD/Cal/AliTRDCalFEE.h b/TRD/Cal/AliTRDCalFEE.h
new file mode 100644 (file)
index 0000000..02c192f
--- /dev/null
@@ -0,0 +1,32 @@
+#ifndef AliTRDCALFEE_H
+#define AliTRDCALFEE_H
+/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+ * See cxx source for full Copyright notice                               */
+
+/* $Id: AliTRDCalFEE.h 18952 2007-06-08 11:36:12Z cblume $ */
+
+///////////////////////////////////////////////////////////////////////////////
+//                                                                           //
+//  TRD calibration class for TRD FEE parameters                             //
+//  Empty dummy class for backward compability                               //
+//                                                                           //
+///////////////////////////////////////////////////////////////////////////////
+
+#include "TNamed.h"
+
+class TString;
+
+class AliTRDCalFEE : public TNamed {
+
+ public:
+
+  AliTRDCalFEE();
+  AliTRDCalFEE(const Text_t *name, const Text_t *title);
+  virtual ~AliTRDCalFEE() { };
+    
+ protected:
+
+  ClassDef(AliTRDCalFEE,2)         //  TRD calibration class for TRD FEE parameters
+
+};
+#endif
index b8265feba43ffadcda517e1a77ee3553827ed8d4..01cb68ec741009e43196a3f7690c848f9c42631b 100644 (file)
@@ -35,6 +35,7 @@
 #pragma link C++ class  AliTRDgtuParam+;
 
 #pragma link C++ class  AliTRDcalibDB+;
+#pragma link C++ class  AliTRDCalFEE+;
 #pragma link C++ class  AliTRDCalROC+;
 #pragma link C++ class  AliTRDCalPad+;
 #pragma link C++ class  AliTRDCalDet+;
index aabeba44009a924cfc21b0e7a47e30f7591bc658..b4875b1ea23e9f50cffef2167c873958a05bb278 100644 (file)
@@ -19,6 +19,7 @@ SRCS= AliTRDarraySignal.cxx \
       AliTRDfeeParam.cxx \
       AliTRDgtuParam.cxx \
       AliTRDcalibDB.cxx \
+      Cal/AliTRDCalFEE.cxx \
       Cal/AliTRDCalROC.cxx \
       Cal/AliTRDCalPad.cxx \
       Cal/AliTRDCalDet.cxx \