ROOT logo
/**************************************************************************
 * Copyright(c) 2007-2009, 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.                  *
 **************************************************************************/
///////////////////////////////////////////////////////////////////////////
//  Virtual base Plane Efficiency class           
//  Specific detector implementation is done in  
//  AliITSPlaneEff                           
//  AliTRDPlaneEff                               
//  AliTOFPlaneEff                               
//
//  Author: G.E. Bruno 
//          giuseppe.bruno@ba.infn.it
//
///////////////////////////////////////////////////////////////////////////


#include <TMath.h>
#include "AliPlaneEff.h"
#include "AliLog.h"
//#include "AliCDBManager.h"
//#include "AliCDBStorage.h"

ClassImp(AliPlaneEff)
//______________________________________________________________________
AliPlaneEff::AliPlaneEff(): TObject()/*,
fRunNumber(0), 
fCDBUri(""),
fInitCDBCalled(kFALSE)*/
{
    // Default constructor
    // Inputs:
    //    none.
    // Outputs:
    //    none.
    // Return:
    //    a default constructed AliPlaneEff class
 //InitCDB();
}
//______________________________________________________________________
AliPlaneEff::AliPlaneEff(const AliPlaneEff &s) : TObject(s)/*,
fRunNumber(s.fRunNumber),
fCDBUri(s.fCDBUri),
fInitCDBCalled(s.fInitCDBCalled)*/
{
    //     Copy Constructor
    // Inputs:
    //    const AliPlaneEff &s  simulation class to copy from
    // Outputs:
    //    none.
    // Return:
    //    a standard constructed AliPlaneEff class with values the same
    //    as that of s.

}
//_________________________________________________________________________
AliPlaneEff&  AliPlaneEff::operator=(const AliPlaneEff &source){
    //    Assignment operator
    // Inputs:
    //    const AliPlaneEff &source  simulation class to copy from
    // Outputs:
    //    none.
    // Return:
    //    a standard constructed AliPlaneEff class with values the same
    //    as that of s.
    if(this != &source){
       source.Copy(*this);
    }
    return *this;
}
//_____________________________________________________________
void AliPlaneEff::Copy(TObject &/*obj*/) const {
  // copy this to obj
/*  ((AliPlaneEff& ) obj).fRunNumber		= fRunNumber;
  ((AliPlaneEff& ) obj).fCDBUri		= fCDBUri;
  ((AliPlaneEff& ) obj).fInitCDBCalled	= fInitCDBCalled;
*/
}
//_________________________________________________________________________
 AliPlaneEff.cxx:1
 AliPlaneEff.cxx:2
 AliPlaneEff.cxx:3
 AliPlaneEff.cxx:4
 AliPlaneEff.cxx:5
 AliPlaneEff.cxx:6
 AliPlaneEff.cxx:7
 AliPlaneEff.cxx:8
 AliPlaneEff.cxx:9
 AliPlaneEff.cxx:10
 AliPlaneEff.cxx:11
 AliPlaneEff.cxx:12
 AliPlaneEff.cxx:13
 AliPlaneEff.cxx:14
 AliPlaneEff.cxx:15
 AliPlaneEff.cxx:16
 AliPlaneEff.cxx:17
 AliPlaneEff.cxx:18
 AliPlaneEff.cxx:19
 AliPlaneEff.cxx:20
 AliPlaneEff.cxx:21
 AliPlaneEff.cxx:22
 AliPlaneEff.cxx:23
 AliPlaneEff.cxx:24
 AliPlaneEff.cxx:25
 AliPlaneEff.cxx:26
 AliPlaneEff.cxx:27
 AliPlaneEff.cxx:28
 AliPlaneEff.cxx:29
 AliPlaneEff.cxx:30
 AliPlaneEff.cxx:31
 AliPlaneEff.cxx:32
 AliPlaneEff.cxx:33
 AliPlaneEff.cxx:34
 AliPlaneEff.cxx:35
 AliPlaneEff.cxx:36
 AliPlaneEff.cxx:37
 AliPlaneEff.cxx:38
 AliPlaneEff.cxx:39
 AliPlaneEff.cxx:40
 AliPlaneEff.cxx:41
 AliPlaneEff.cxx:42
 AliPlaneEff.cxx:43
 AliPlaneEff.cxx:44
 AliPlaneEff.cxx:45
 AliPlaneEff.cxx:46
 AliPlaneEff.cxx:47
 AliPlaneEff.cxx:48
 AliPlaneEff.cxx:49
 AliPlaneEff.cxx:50
 AliPlaneEff.cxx:51
 AliPlaneEff.cxx:52
 AliPlaneEff.cxx:53
 AliPlaneEff.cxx:54
 AliPlaneEff.cxx:55
 AliPlaneEff.cxx:56
 AliPlaneEff.cxx:57
 AliPlaneEff.cxx:58
 AliPlaneEff.cxx:59
 AliPlaneEff.cxx:60
 AliPlaneEff.cxx:61
 AliPlaneEff.cxx:62
 AliPlaneEff.cxx:63
 AliPlaneEff.cxx:64
 AliPlaneEff.cxx:65
 AliPlaneEff.cxx:66
 AliPlaneEff.cxx:67
 AliPlaneEff.cxx:68
 AliPlaneEff.cxx:69
 AliPlaneEff.cxx:70
 AliPlaneEff.cxx:71
 AliPlaneEff.cxx:72
 AliPlaneEff.cxx:73
 AliPlaneEff.cxx:74
 AliPlaneEff.cxx:75
 AliPlaneEff.cxx:76
 AliPlaneEff.cxx:77
 AliPlaneEff.cxx:78
 AliPlaneEff.cxx:79
 AliPlaneEff.cxx:80
 AliPlaneEff.cxx:81
 AliPlaneEff.cxx:82
 AliPlaneEff.cxx:83
 AliPlaneEff.cxx:84
 AliPlaneEff.cxx:85
 AliPlaneEff.cxx:86
 AliPlaneEff.cxx:87
 AliPlaneEff.cxx:88
 AliPlaneEff.cxx:89