From: masera Date: Tue, 14 Feb 2006 16:00:46 +0000 (+0000) Subject: Bug fix - It should compile also on 64bit systems, however this code must be revised... X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=5087adf08c8ca60afb858bdf7a9018f99997ef70 Bug fix - It should compile also on 64bit systems, however this code must be revised by the authors --- diff --git a/ITS/AliITSspdTestBeam.cxx b/ITS/AliITSspdTestBeam.cxx index 2e2b76e8a29..911ef9ffd21 100644 --- a/ITS/AliITSspdTestBeam.cxx +++ b/ITS/AliITSspdTestBeam.cxx @@ -285,13 +285,15 @@ Int_t AliITSspdTestBeam::Decode(){ fNEvents = fRH->GetNumberOfEvents(); fNBrst = fNEvents/fRH->GetBurstSize(); fBrst = new AliITSspdTestBeamBurst*[fNBrst]; - fBrstSize = new Int_t*[np]; + //orig fBrstSize = new Int_t*[np]; + fBrstSize = new UInt_t**[np]; fNData = new Int_t*[np]; fData = new AliITSspdTestBeamData**[np]; fHData = new AliITSspdTestBeamData**[np]; fTData = new AliITSspdTestBeamData**[np]; for(i=0;iSizeOf(); // increment wd byte wise for(ip=0;ipMode()){ case AliITSTestBeamData::kData : diff --git a/ITS/AliITSspdTestBeam.h b/ITS/AliITSspdTestBeam.h index bbbd992c624..fa9e33bf9d0 100644 --- a/ITS/AliITSspdTestBeam.h +++ b/ITS/AliITSspdTestBeam.h @@ -43,7 +43,8 @@ private: AliITSspdTestBeamHeader *fRH; //! Run Header AliITSspdTestBeamTail *fRT; //! Run Trailer Int_t fNBrst; //! Number of burts (size of array). - Int_t **fBrstSize; //! Size of each burst for each pilot + //orig Int_t **fBrstSize; //! Size of each burst for each pilot + UInt_t ***fBrstSize; //! Size of each burst for each pilot AliITSspdTestBeamBurst **fBrst; //! Array of bursts. Int_t **fNData; //! array of the number of data points AliITSspdTestBeamData ***fData; //! Data