X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=MONITOR%2FAliMonitorTPC.cxx;h=082f89119a7725675aab1906d4b404b764baf2d7;hb=54c9a3d91af4457cd5016e8c1597452b65a1d3b8;hp=48743e77eddea090ded4292ab4f78c09b6540bcd;hpb=5fe305fe722e95d0ecd99b12379b8f9c2d18475e;p=u%2Fmrichter%2FAliRoot.git diff --git a/MONITOR/AliMonitorTPC.cxx b/MONITOR/AliMonitorTPC.cxx index 48743e77edd..082f89119a7 100644 --- a/MONITOR/AliMonitorTPC.cxx +++ b/MONITOR/AliMonitorTPC.cxx @@ -25,7 +25,9 @@ #include #include -#include "AliESD.h" +#include "AliLog.h" +#include "AliESDEvent.h" +#include "AliESDtrack.h" #include "AliMonitorDataTPC.h" #include "AliMonitorHisto.h" #include "AliMonitorTPC.h" @@ -41,26 +43,26 @@ ClassImp(AliMonitorTPC) //_____________________________________________________________________________ -AliMonitorTPC::AliMonitorTPC(AliTPCParam* param) +AliMonitorTPC::AliMonitorTPC(AliTPCParam* param): + AliMonitor(), + fParam(param), + fPadsCharge(NULL), + fClustersCharge(NULL), + fNClustersVsRow(NULL), + fNClustersVsSector(NULL), + fNTracks(NULL), + fTrackPt(NULL), + fTrackEta(NULL), + fTrackPhi(NULL), + fTrackNCl(NULL), + fTrackDEdxVsP(NULL), + fTrackDEdx(NULL), + fTrackEtaVsPhi(NULL), + fPtEtaVsPhi(NULL), + fData(new AliMonitorDataTPC(10000)) { // create a TPC monitor object with the given parameters - fParam = param; - fData = new AliMonitorDataTPC(10000); -} - -//_____________________________________________________________________________ -AliMonitorTPC::AliMonitorTPC(const AliMonitorTPC& monitor) : - AliMonitor(monitor) -{ - Fatal("AliMonitorTPC", "copy constructor not implemented"); -} - -//_____________________________________________________________________________ -AliMonitorTPC& AliMonitorTPC::operator = (const AliMonitorTPC& /*monitor*/) -{ - Fatal("operator =", "assignment operator not implemented"); - return *this; } //_____________________________________________________________________________ @@ -154,7 +156,7 @@ void AliMonitorTPC::CreateBranches(TTree* tree) //_____________________________________________________________________________ void AliMonitorTPC::FillHistos(AliRunLoader* runLoader, - AliRawReader* rawReader, AliESD* esd) + AliRawReader* rawReader, AliESDEvent* esd) { // fill the TPC monitor histogrms