CMS 3D CMS Logo

Public Member Functions

Impl::pp::pp Class Reference

Inherits Configuration::DataProcessing::Reco::Reco.

List of all members.

Public Member Functions

def alcaHarvesting
def expressProcessing
def promptReco

Detailed Description

_pp_

Implement configuration building for data processing for proton
collision data taking

Definition at line 19 of file pp.py.


Member Function Documentation

def Impl::pp::pp::alcaHarvesting (   self,
  globalTag,
  datasetName,
  args 
)
_alcaHarvesting_

Proton collisions data taking AlCa Harvesting

Definition at line 62 of file pp.py.

00063                                                             :
00064         """
00065         _alcaHarvesting_
00066 
00067         Proton collisions data taking AlCa Harvesting
00068 
00069         """
00070         if not 'skims' in args:
00071             args['skims']=['BeamSpotByRun',
00072                            'BeamSpotByLumi',
00073                            'SiStripQuality']
00074             
00075         return Reco.alcaHarvesting(self, globalTag, datasetName, **args)
00076 
def Impl::pp::pp::expressProcessing (   self,
  globalTag,
  args 
)
_expressProcessing_

Proton collision data taking express processing

Definition at line 46 of file pp.py.

00047                                                   :
00048         """
00049         _expressProcessing_
00050 
00051         Proton collision data taking express processing
00052 
00053         """
00054         if not 'skims' in args:
00055             args['skims']=['@allForExpress']
00056         process = Reco.expressProcessing(self,globalTag, **args)
00057         
00058         customiseExpress(process)
00059                 
00060         return process
00061 

def Impl::pp::pp::promptReco (   self,
  globalTag,
  args 
)
_promptReco_

Proton collision data taking prompt reco

Definition at line 29 of file pp.py.

00030                                            :
00031         """
00032         _promptReco_
00033 
00034         Proton collision data taking prompt reco
00035 
00036         """
00037         if not 'skims' in args:
00038             args['skims']=['@allForPrompt']
00039         process = Reco.promptReco(self,globalTag, **args)
00040 
00041         #add the former top level patches here
00042         customisePrompt(process)
00043         
00044         return process
00045