]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Fixing changes from rev 38325 and 33617.
authorzampolli <zampolli@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 8 Feb 2010 10:38:53 +0000 (10:38 +0000)
committerzampolli <zampolli@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 8 Feb 2010 10:38:53 +0000 (10:38 +0000)
TOF/AliTOFRawStream.h
TOF/TOFbaseLinkDef.h
TOF/libTOFbase.pkg

index 5e5da32b22fc7f0b436145db9b401985e63ce7f0..2c7896180c2648010ec5369c704ddaca2b4ef7a8 100644 (file)
@@ -469,8 +469,8 @@ class AliTOFRawStream: public TObject {
 
   void SetRawReader(AliRawReader * const rawReader) {fRawReader=rawReader;};
 
-  const AliTOFHitDataBuffer * GetDataBuffer(Int_t DDL) const {return &fDataBuffer[DDL];};
-  const AliTOFHitDataBuffer * GetPackedDataBuffer(Int_t DDL) const {return &fPackedDataBuffer[DDL];};
+  AliTOFHitDataBuffer * GetDataBuffer(Int_t DDL) {return &fDataBuffer[DDL];};
+  AliTOFHitDataBuffer * GetPackedDataBuffer(Int_t DDL) {return &fPackedDataBuffer[DDL];};
 
   void ResetDataBuffer(Int_t DDL) {fDataBuffer[DDL].Reset();};
   void ResetPackedDataBuffer(Int_t DDL) {fPackedDataBuffer[DDL].Reset();};
index 174d9054316415e8087f70992edc551a74c2e92c..ec9a4faa7df5a91e7532a67a6f55c70cddda3c80 100644 (file)
@@ -34,6 +34,7 @@
 #pragma link C++ class  AliTOFNoiseConfigHandler+;
 #pragma link C++ class  AliTOFcalibHisto+;
 #pragma link C++ class  AliTOFArray+;
+#pragma link C++ class  AliTOFDaConfigHandler+;
 
 
 #endif
index 7acf22f9982de706752c3a7fecac0e7adf35dd68..7cf63dfa444d75c07de3e76709d6791e4bd36eb1 100644 (file)
@@ -26,7 +26,8 @@ SRCS  = AliTOFGeometry.cxx  \
        AliTOFCableLengthMap.cxx \
        AliTOFNoiseConfigHandler.cxx \
        AliTOFcalibHisto.cxx \
-       AliTOFArray.cxx
+       AliTOFArray.cxx \
+       AliTOFDaConfigHandler.cxx \
 
 
 HDRS:= $(SRCS:.cxx=.h)