]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/Cal/AliTRDCalDCS.cxx
- Small bug fix
[u/mrichter/AliRoot.git] / TRD / Cal / AliTRDCalDCS.cxx
index c313d099c767f88bb950f4f90d0ff686ab6da59b..6a26d84a0b6e910fef9d08e5327941f7e59694e4 100644 (file)
@@ -23,6 +23,7 @@
 
 #include "AliTRDCalDCS.h"
 #include "AliTRDCalDCSFEE.h"
+#include "AliTRDCalDCSGTU.h"
 
 ClassImp(AliTRDCalDCS)
   
@@ -49,7 +50,10 @@ AliTRDCalDCS::AliTRDCalDCS()
   ,fGAddOptions(0)
   ,fFEEArr(new TObjArray(540))
   ,fPTRArr(new TObjArray(6))
-  ,fGTUArr(new TObjArray(19))
+  ,fGTUObj(new AliTRDCalDCSGTU())
+  ,fRunType("")
+  ,fStartTime(0)
+  ,fEndTime(0)
 {
   //
   // AliTRDCalDCS default constructor
@@ -79,7 +83,10 @@ AliTRDCalDCS::AliTRDCalDCS(const Text_t *name, const Text_t *title)
   ,fGAddOptions(0)
   ,fFEEArr(new TObjArray(540))
   ,fPTRArr(new TObjArray(6))
-  ,fGTUArr(new TObjArray(19))
+  ,fGTUObj(new AliTRDCalDCSGTU())
+  ,fRunType("")
+  ,fStartTime(0)
+  ,fEndTime(0)
 {
   //
   // AliTRDCalDCS constructor
@@ -107,9 +114,12 @@ AliTRDCalDCS::AliTRDCalDCS(const AliTRDCalDCS &cd)
   ,fGTrackletDef(0)
   ,fGTriggerSetup(0)
   ,fGAddOptions(0)
-  ,fFEEArr(0)
-  ,fPTRArr(0)
-  ,fGTUArr(0)
+  ,fFEEArr(new TObjArray(540))
+  ,fPTRArr(new TObjArray(6))
+  ,fGTUObj(new AliTRDCalDCSGTU())
+  ,fRunType("")
+  ,fStartTime(0)
+  ,fEndTime(0)
 {
   //
   // AliTRDCalDCS copy constructor
@@ -193,3 +203,4 @@ void AliTRDCalDCS::EvaluateGlobalParameters()
   }
 }
 
+