CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions
crabWrapper.CrabWrapper Class Reference

Public Member Functions

def __init__
 
def run
 

Detailed Description

Definition at line 49 of file crabWrapper.py.

Constructor & Destructor Documentation

def crabWrapper.CrabWrapper.__init__ (   self)

Definition at line 50 of file crabWrapper.py.

50 
51  def __init__( self ):
52  pass

Member Function Documentation

def crabWrapper.CrabWrapper.run (   self,
  options 
)

Definition at line 53 of file crabWrapper.py.

Referenced by Types.LuminosityBlockID.cppID().

53 
54  def run( self, options ):
55  theCrab = crab.Crab()
56  try:
57  theCrab.initialize_( options )
58  theCrab.run()
59  except crab_exceptions.CrabException, e:
60  raise AllInOneError( str( e ) )
61  del theCrab
62