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