]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliRunTag.cxx
Fix fixed-string length bug
[u/mrichter/AliRoot.git] / STEER / AliRunTag.cxx
index bb54c44483ad10eb81073bede083faa1be479cf0..95f74f7c72aa6f846541cacfdf8b9bc1e2eeb106 100644 (file)
@@ -46,7 +46,8 @@ ClassImp(AliRunTag)
     fNumDetectors(0),
     fEventTag("AliEventTag", 1000),
     fDetectorTag(),
-    fLHCTag()
+    fLHCTag(), 
+    fQA()
 {
   //Default constructor
 }
@@ -73,7 +74,8 @@ void AliRunTag::CopyStandardContent(AliRunTag *oldtag) {
   SetCalibVersion(oldtag->GetCalibVersion());
   SetDataType(oldtag->GetDataType());
   SetLHCTag(oldtag->GetLHCTag()->GetLuminosity(),oldtag->GetLHCTag()->GetLHCState());
-  //SetDetectorTag(oldtag->GetDetectorTags());
+  SetDetectorTag(oldtag->GetDetectorTags()->GetIntDetectorMask());
+  SetQA(*(oldtag->GetQA())) ;          
 }
 
 //___________________________________________________________________________