CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Private Attributes
CmsRun.CmsRun Class Reference
Inheritance diagram for CmsRun.CmsRun:

Public Member Functions

def __init__
 
def run
 
def totalEvents
 
def totalEventsFailed
 
def totalEventsPassed
 

Private Attributes

 _cppProcessor
 

Detailed Description

Definition at line 4 of file CmsRun.py.

Constructor & Destructor Documentation

def CmsRun.CmsRun.__init__ (   self,
  process 
)
Uses a cms.Process to setup an edm::EventProcessor

Definition at line 5 of file CmsRun.py.

5 
6  def __init__(self,process):
7  """Uses a cms.Process to setup an edm::EventProcessor
8  """
9  procDesc = _pp.ProcessDesc()
10  process.fillProcessDesc(procDesc.pset())
11  self._cppProcessor = _pf.PythonEventProcessor(procDesc)
def __init__
Definition: CmsRun.py:5

Member Function Documentation

def CmsRun.CmsRun.run (   self)
Process all the events

Definition at line 12 of file CmsRun.py.

12 
13  def run(self):
14  """Process all the events
15  """
16  self._cppProcessor.run()
def CmsRun.CmsRun.totalEvents (   self)

Definition at line 17 of file CmsRun.py.

17 
18  def totalEvents(self):
return self._cppProcessor.totalEvents()
def totalEvents
Definition: CmsRun.py:17
def CmsRun.CmsRun.totalEventsFailed (   self)

Definition at line 21 of file CmsRun.py.

21 
22  def totalEventsFailed(self):
23  return self._cppProcessor.totalEventsFailed()
def totalEventsFailed
Definition: CmsRun.py:21
def CmsRun.CmsRun.totalEventsPassed (   self)

Definition at line 19 of file CmsRun.py.

19 
20  def totalEventsPassed(self):
return self._cppProcessor.totalEventsPassed()
def totalEventsPassed
Definition: CmsRun.py:19

Member Data Documentation

CmsRun.CmsRun._cppProcessor
private

Definition at line 10 of file CmsRun.py.