1 /**************************************************************************
2 * Copyright(c) 2007-2009, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15 ///////////////////////////////////////////////////////////////////////////
16 // Virtual base Plane Efficiency class
17 // Specific detector implementation is done in
23 // giuseppe.bruno@ba.infn.it
25 ///////////////////////////////////////////////////////////////////////////
29 #include "AliPlaneEff.h"
31 //#include "AliCDBManager.h"
32 //#include "AliCDBStorage.h"
35 //______________________________________________________________________
36 AliPlaneEff::AliPlaneEff(): TObject()/*,
39 fInitCDBCalled(kFALSE)*/
41 // Default constructor
47 // a default constructed AliPlaneEff class
50 //______________________________________________________________________
51 AliPlaneEff::AliPlaneEff(const AliPlaneEff &s) : TObject(s)/*,
52 fRunNumber(s.fRunNumber),
54 fInitCDBCalled(s.fInitCDBCalled)*/
58 // const AliPlaneEff &s simulation class to copy from
62 // a standard constructed AliPlaneEff class with values the same
66 //_________________________________________________________________________
67 AliPlaneEff& AliPlaneEff::operator=(const AliPlaneEff &source){
68 // Assignment operator
70 // const AliPlaneEff &source simulation class to copy from
74 // a standard constructed AliPlaneEff class with values the same
81 //_____________________________________________________________
82 void AliPlaneEff::Copy(TObject &/*obj*/) const {
84 /* ((AliPlaneEff& ) obj).fRunNumber = fRunNumber;
85 ((AliPlaneEff& ) obj).fCDBUri = fCDBUri;
86 ((AliPlaneEff& ) obj).fInitCDBCalled = fInitCDBCalled;
89 //_________________________________________________________________________