CMS 3D CMS Logo

List of all members | Public Member Functions
crabWrapper.CrabWrapper Class Reference

Public Member Functions

def __init__ (self)
 
def run (self, options)
 

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  def __init__( self ):
51  pass
52 

Member Function Documentation

def crabWrapper.CrabWrapper.run (   self,
  options 
)

Definition at line 53 of file crabWrapper.py.

Referenced by Types.EventID.cppID(), Types.LuminosityBlockID.cppID(), and o2olib.O2OTool.execute().

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