]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
workaround for rootcint inconsistency
authorrichterm <richterm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 23 Oct 2008 08:34:16 +0000 (08:34 +0000)
committerrichterm <richterm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 23 Oct 2008 08:34:16 +0000 (08:34 +0000)
HLT/pendolino/AliHLTPendolino.cxx
HLT/pendolino/AliHLTPendolino.h

index e142ff43c5a2d58a6720d54f057d4c61a33f7bc8..0a813a3274fc7091e1ec8c738bc12388a9d8c66a 100644 (file)
@@ -756,11 +756,21 @@ Int_t AliHLTPendolino::initPredictProc(TString detector, Int_t run,
 }
 
 
-CONST_PROPERTY UInt_t AliHLTPendolino::GetStartTimeDCSQuery() {
+#ifdef SHUTTLE_PRE_REV29388_INTERFACE
+const UInt_t AliHLTPendolino::GetStartTimeDCSQuery()
+#else
+UInt_t AliHLTPendolino::GetStartTimeDCSQuery()
+#endif
+{
        return fStartTime;
 }
 
-CONST_PROPERTY UInt_t AliHLTPendolino::GetEndTimeDCSQuery() {
+#ifdef SHUTTLE_PRE_REV29388_INTERFACE
+const UInt_t AliHLTPendolino::GetEndTimeDCSQuery()
+#else
+UInt_t AliHLTPendolino::GetEndTimeDCSQuery()
+#endif
+{
        return fEndTime;
 }
 
index ef839267d49136dac9b798402d330d454833ee4b..ce9362d15ef495f580be620445183ce04b566815 100644 (file)
@@ -378,7 +378,11 @@ class AliHLTPendolino : public AliShuttleInterface {
                 * implementation in the Offline Shuttle - there the initial start time
                 * is set to the start-of-data for the complete run.)
                 */
-               virtual CONST_PROPERTY UInt_t GetStartTimeDCSQuery();
+#ifdef SHUTTLE_PRE_REV29388_INTERFACE
+               virtual const UInt_t GetStartTimeDCSQuery();
+#else
+               virtual UInt_t GetStartTimeDCSQuery();
+#endif
 
                /**
                 * Function to get the end time of the DCS Archive DB request; in HLT
@@ -387,7 +391,11 @@ class AliHLTPendolino : public AliShuttleInterface {
                 * implementation in the Offline Shuttle - there the initial end time
                 * is set to the end-of-data for the complete run.)
                 */
-               virtual CONST_PROPERTY UInt_t GetEndTimeDCSQuery();
+#ifdef SHUTTLE_PRE_REV29388_INTERFACE
+               virtual const UInt_t GetEndTimeDCSQuery();
+#else
+               virtual UInt_t GetEndTimeDCSQuery();
+#endif
                                
                
        protected: