]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliTriggerDetector.cxx
Fix fixed-string length bug
[u/mrichter/AliRoot.git] / STEER / AliTriggerDetector.cxx
index 9bd01f4f6a5ffdcf5c8a78a77abbbda52c3857b7..b1d4be4b91606a6ff7479098724b8365ea1bf55e 100644 (file)
@@ -105,7 +105,7 @@ void AliTriggerDetector::CreateInputs(const TObjArray &inputs)
        delete availInputs->Remove(tempObj);
        fInputs.AddAt( inp, tempIndex );
        inp->Enable();
-       AliInfo(Form("Trigger input (%s) is found in the CTP configuration. Therefore it is enabled for trigger detector (%s)",
+       AliDebug(1,Form("Trigger input (%s) is found in the CTP configuration. Therefore it is enabled for trigger detector (%s)",
                    inp->GetInputName().Data(),name.Data()));
      }
      else {
@@ -117,10 +117,11 @@ void AliTriggerDetector::CreateInputs(const TObjArray &inputs)
    for( Int_t j=0; j<fInputs.GetEntriesFast(); j++ ) {
      AliTriggerInput *inp = (AliTriggerInput *)fInputs.At(j);
      if (inp->GetSignature() == -1 &&
-        inp->GetMask() == 0)
+        inp->GetMask() == 0) {
        inp->Enable();
-       AliInfo(Form("Trigger input (%s) was not found in the CTP configuration. Therefore it will be run in a stand-alone mode",
+       AliDebug(1,Form("Trigger input (%s) was not found in the CTP configuration. Therefore it will be run in a stand-alone mode",
                    inp->GetInputName().Data()));
+     }
    }
 
    fInputs.SetOwner(kFALSE);