Skip to content
Snippets Groups Projects

Fix untested StatusCodes exposed by gaudi/Gaudi!386

Merged Marco Cattaneo requested to merge cattanem-fixUntestedStatusCodes into master
4 files
+ 17
42
Compare changes
  • Side-by-side
  • Inline
Files
4
// $Id: $
// ============================================================================
// Include files
// ============================================================================
@@ -12,10 +11,6 @@
* @see Kali::Destroyer
* @author Vanya BELYAEV Ivan.Belyaev@cern.ch
* @date 2011-07-31
*
* $Revision$
* Last modification $Date$
* by $Author$
*/
// ============================================================================
namespace Kali
@@ -24,11 +19,7 @@ namespace Kali
/** @class cloner
*
* @author Vanya BELYAEV Ivan.Belyaev@itep.ru
* @date 2011-07-31
*
* $Revision$
* Last modification $Date$
* by $Author$
* @date 2011-07-31
*/
class Cloner : public Kali::Destroyer
{
@@ -81,7 +72,7 @@ StatusCode Kali::Cloner::execute ()
StatusCode sc = collect ( digits , tracks ) ;
if ( sc.isFailure() )
{
Warning ("Error from collect", sc ) ;
Warning ("Error from collect", sc ).ignore() ;
setFilterPassed ( false ) ;
return StatusCode::SUCCESS ;
}
@@ -92,7 +83,7 @@ StatusCode Kali::Cloner::execute ()
sc = copy ( digits , tracks ) ;
if ( sc.isFailure() )
{
Warning ("Error from destroy", sc ) ;
Warning ("Error from destroy", sc ).ignore() ;
setFilterPassed ( false ) ;
return StatusCode::SUCCESS ;
}
Loading