]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TPC/AliTPCGenDBConf.cxx
Use my defaults
[u/mrichter/AliRoot.git] / TPC / AliTPCGenDBConf.cxx
index 7fe0865f7d8567f1391556afd42c7df471b17d7c..31910fb356f169346d1a65d3606cfc15a696e7d5 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");
 }
 
 //______________________________________________________________________________________________
@@ -41,14 +47,12 @@ AliTPCGenDBConf::~AliTPCGenDBConf(){
 
 }
 //______________________________________________________________________________________________
-AliTPCGenDBConf& AliTPCGenDBConf::operator= (const AliTPCGenDBConf& org )
+AliTPCGenDBConf& AliTPCGenDBConf::operator= (const AliTPCGenDBConf& /*org*/ )
 {
  //
  // assignment operator
  //
- if (&org == this) return *this;
-
- new (this) AliTPCGenDBConf(org);
+ AliError("assignment operator not implemented");
  return *this;
 }