Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:13:02

0001 #ifndef FWCore_ServiceRegistry_TerminationOrigin_h
0002 #define FWCore_ServiceRegistry_TerminationOrigin_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     FWCore/ServiceRegistry
0006 // Class  :     edm::TerminationOrigin
0007 //
0008 /**\class edm::TerminationOrigin TerminationOrigin.h "TerminationOrigin.h"
0009 
0010  Description: Enum for different possible origins of a job termination 'signal'
0011 
0012  Usage:
0013     These values are used to denote exactly why a job is terminating prematurely.
0014 
0015 */
0016 //
0017 // Original Author:  Chris Jones
0018 //         Created:  Tue, 02 Sep 2014 20:22:02 GMT
0019 //
0020 
0021 // system include files
0022 
0023 // user include files
0024 
0025 // forward declarations
0026 
0027 namespace edm {
0028   enum class TerminationOrigin { ExceptionFromThisContext, ExceptionFromAnotherContext, ExternalSignal };
0029 }
0030 
0031 #endif