]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TPC/AliTPCGenDBTemp.cxx
AliDCSGenDB/AliTPCGenDBConf/AliTPCGenDBTemp: Hard coded reference to specific storage...
[u/mrichter/AliRoot.git] / TPC / AliTPCGenDBTemp.cxx
index c58f498fcd28f19053fdd6e1c8d5375197e2dedd..f4c153eb18a19bc25865db0110d28d2c966236a6 100644 (file)
@@ -9,6 +9,7 @@
 
 
 #include "AliTPCGenDBTemp.h"
+#include "AliLog.h"
 
 ClassImp(AliTPCGenDBTemp)
 
@@ -24,15 +25,21 @@ AliTPCGenDBTemp::AliTPCGenDBTemp():
 
 //______________________________________________________________________________________________
 
-AliTPCGenDBTemp::AliTPCGenDBTemp(const AliTPCGenDBTemp& org):
-  AliDCSGenDB(org)
+AliTPCGenDBTemp::AliTPCGenDBTemp(const char *defaultStorage, const char *specificStorage) :
+   AliDCSGenDB(defaultStorage,specificStorage)
+{
+}
+
+//______________________________________________________________________________________________
+
+AliTPCGenDBTemp::AliTPCGenDBTemp(const AliTPCGenDBTemp& org) : AliDCSGenDB(org)
 {
 
 //
 //  Copy constructor
 //
+ AliError("copy constructor not implemented");
 
- ((AliTPCGenDBTemp &) org).Copy(*this);
 }
 
 //______________________________________________________________________________________________
@@ -48,9 +55,7 @@ AliTPCGenDBTemp& AliTPCGenDBTemp::operator= (const AliTPCGenDBTemp& org )
  //
  // assignment operator
  //
- if (&org == this) return *this;
-
- new (this) AliTPCGenDBTemp(org);
+ AliError("assignment operator not implemented");
  return *this;
 }