]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
fix warnings
authorjthaeder <jthaeder@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 17 Mar 2009 19:30:28 +0000 (19:30 +0000)
committerjthaeder <jthaeder@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 17 Mar 2009 19:30:28 +0000 (19:30 +0000)
HLT/TRD/AliHLTTRDCalibrationComponent.cxx
HLT/TRD/AliHLTTRDTrackerV1Component.cxx

index 629a1ca7f9bb08cda7c956e530a3b4b3ca59c4a3..181e3688bf4a4f959b3f2753e7a7bc548b1705b8 100644 (file)
@@ -208,12 +208,13 @@ Int_t AliHLTTRDCalibrationComponent::ProcessCalibration(const AliHLTComponent_Ev
                           DataType2Text(inputDataType).c_str());
                 continue;
             }
-            else
+            else {
                 HLTDebug("We get the right data type: Block # %i/%i; Event 0x%08LX (%Lu) Received datatype: %s",
                          iBlock, evtData.fBlockCnt-1,
                          evtData.fEventID, evtData.fEventID,
                          DataType2Text(inputDataType).c_str());
-
+           }
+           
             TClonesArray* tracksArray = NULL;
             tracksArray = new TClonesArray("AliTRDtrackV1");
             HLTDebug("BLOCK fPtr 0x%x, fOffset %i, fSize %i, fSpec 0x%x, fDataType %s", block.fPtr, block.fOffset, block.fSize, block.fSpecification, DataType2Text(block.fDataType).c_str());
index fa8ca1352e1303949de7caa4c3c7c75f0d161121..fafdb3bbe1218182cbe3884bc7b479e23369dfdf 100644 (file)
@@ -438,11 +438,12 @@ int AliHLTTRDTrackerV1Component::DoEvent( const AliHLTComponentEventData& evtDat
                    DataType2Text(inputDataType).c_str());
          continue;
        }
-      else 
-       HLTDebug("We get the right data type: Block # %i/%i; Event 0x%08LX (%Lu) Received datatype: %s",
-                   iBlock, evtData.fBlockCnt-1,
-                   evtData.fEventID, evtData.fEventID, 
-                   DataType2Text(inputDataType).c_str());
+      else {
+         HLTDebug("We get the right data type: Block # %i/%i; Event 0x%08LX (%Lu) Received datatype: %s",
+                  iBlock, evtData.fBlockCnt-1,
+                  evtData.fEventID, evtData.fEventID, 
+                  DataType2Text(inputDataType).c_str());
+      }
       
       
       TClonesArray* clusterArray = new TClonesArray("AliTRDcluster"); // would be nice to allocate memory for all clusters here.
@@ -464,8 +465,10 @@ int AliHLTTRDTrackerV1Component::DoEvent( const AliHLTComponentEventData& evtDat
    
       if (trdTracks)
        totalSize += TransportTracks(trdTracks, outputPtr, outputBlocks, offset, dBlockSpecification);
-      else 
-       HLTDebug("Bad array trdTracks = 0x%x", trdTracks);
+      else {
+         HLTDebug("Bad array trdTracks = 0x%x", trdTracks);
+      }
+      
       HLTDebug("totalSize: %i", totalSize);
       
 //       if ( totalSize > allocSize )