00001 /***************************************************************************** 00002 * Project: RooFit * 00003 * Package: RooFitCore * 00004 * File: $Id: RooErrorHandler.h,v 1.4 2007/05/11 09:11:30 verkerke Exp $ 00005 * Authors: * 00006 * WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu * 00007 * DK, David Kirkby, UC Irvine, dkirkby@uci.edu * 00008 * * 00009 * Copyright (c) 2000-2002, Regents of the University of California * 00010 * and Stanford University. All rights reserved. * 00011 * * 00012 * Redistribution and use in source and binary forms, * 00013 * with or without modification, are permitted according to the terms * 00014 * listed in LICENSE (http://roofit.sourceforge.net/license.txt) * 00015 *****************************************************************************/ 00016 #ifndef ROO_ERROR_HANDLER 00017 #define ROO_ERROR_HANDLER 00018 00019 #include <stdlib.h> 00020 #include <signal.h> 00021 #include "Rtypes.h" 00022 00023 class RooErrorHandler 00024 { 00025 public: 00026 // Soft assert function that interrupts macro execution but doesn't kill ROOT 00027 static void softAssert(Bool_t condition) { if (!condition) abort() ; } 00028 00029 // Soft abort function that interrupts macro execution but doesn't kill ROOT 00030 static void softAbort() { raise(11) ; } 00031 } ; 00032 00033 #endif