CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes
Impl.pp.pp Class Reference
Inheritance diagram for Impl.pp.pp:

Public Member Functions

def __init__ (self)
 
def alcaHarvesting (self, globalTag, datasetName, args)
 
def expressProcessing (self, globalTag, args)
 
def promptReco (self, globalTag, args)
 
def visualizationProcessing (self, globalTag, args)
 

Public Attributes

 cbSc
 
 expressCustoms
 
 expressModifiers
 
 promptCustoms
 
 recoSeq
 
 visCustoms
 
 visModifiers
 

Detailed Description

Definition at line 16 of file pp.py.

Constructor & Destructor Documentation

def Impl.pp.pp.__init__ (   self)

Definition at line 17 of file pp.py.

17  def __init__(self):
18  Reco.__init__(self)
19  self.recoSeq=''
20  self.cbSc='pp'
21  self.promptCustoms= [ 'Configuration/DataProcessing/RecoTLR.customisePrompt' ]
22  self.expressCustoms=[ ]
23  self.expressModifiers = modifyExpress
24  self.visCustoms=[ ]
25  self.visModifiers = modifyExpress
expressCustoms
Definition: pp.py:22
expressModifiers
Definition: pp.py:23
visCustoms
Definition: pp.py:24
visModifiers
Definition: pp.py:25
cbSc
Definition: pp.py:20
def __init__(self)
Definition: pp.py:17
promptCustoms
Definition: pp.py:21
recoSeq
Definition: pp.py:19

Member Function Documentation

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

Proton collisions data taking AlCa Harvesting

Definition at line 93 of file pp.py.

93  def alcaHarvesting(self, globalTag, datasetName, **args):
94  """
95  _alcaHarvesting_
96 
97  Proton collisions data taking AlCa Harvesting
98 
99  """
100 
101 
102  if not 'skims' in args and not 'alcapromptdataset' in args:
103  args['skims']=['BeamSpotByRun',
104  'BeamSpotByLumi',
105  'SiStripQuality']
106 
107  return Reco.alcaHarvesting(self, globalTag, datasetName, **args)
108 
109 
def alcaHarvesting(self, globalTag, datasetName, args)
Definition: pp.py:93
def Impl.pp.pp.expressProcessing (   self,
  globalTag,
  args 
)
_expressProcessing_

Proton collision data taking express processing

Definition at line 56 of file pp.py.

References mps_alisetup.append, Impl.HeavyIons.HeavyIons.expressCustoms, and Impl.pp.pp.expressCustoms.

56  def expressProcessing(self, globalTag, **args):
57  """
58  _expressProcessing_
59 
60  Proton collision data taking express processing
61 
62  """
63  if not 'skims' in args:
64  args['skims']=['@allForExpress']
65 
66  if not 'customs' in args:
67  args['customs']=[ ]
68 
69  for c in self.expressCustoms:
70  args['customs'].append(c)
71 
72  process = Reco.expressProcessing(self,globalTag, **args)
73 
74  return process
75 
expressCustoms
Definition: pp.py:22
def expressProcessing(self, globalTag, args)
Definition: pp.py:56
def Impl.pp.pp.promptReco (   self,
  globalTag,
  args 
)
_promptReco_

Proton collision data taking prompt reco

Definition at line 35 of file pp.py.

References mps_alisetup.append, Impl.HeavyIons.HeavyIons.promptCustoms, and Impl.pp.pp.promptCustoms.

35  def promptReco(self, globalTag, **args):
36  """
37  _promptReco_
38 
39  Proton collision data taking prompt reco
40 
41  """
42  if not 'skims' in args:
43  args['skims']=['@allForPrompt']
44 
45  if not 'customs' in args:
46  args['customs']= [ ]
47 
48  for c in self.promptCustoms:
49  args['customs'].append(c)
50 
51  process = Reco.promptReco(self,globalTag, **args)
52 
53  return process
54 
55 
def promptReco(self, globalTag, args)
Definition: pp.py:35
promptCustoms
Definition: pp.py:21
def Impl.pp.pp.visualizationProcessing (   self,
  globalTag,
  args 
)
_visualizationProcessing_

Proton collision data taking visualization processing

Definition at line 76 of file pp.py.

References mps_alisetup.append, Impl.HeavyIons.HeavyIons.visCustoms, and Impl.pp.pp.visCustoms.

76  def visualizationProcessing(self, globalTag, **args):
77  """
78  _visualizationProcessing_
79 
80  Proton collision data taking visualization processing
81 
82  """
83  if not 'customs' in args:
84  args['customs']=[ ]
85 
86  for c in self.visCustoms:
87  args['customs'].append(c)
88 
89  process = Reco.visualizationProcessing(self,globalTag, **args)
90 
91  return process
92 
def visualizationProcessing(self, globalTag, args)
Definition: pp.py:76
visCustoms
Definition: pp.py:24

Member Data Documentation

Impl.pp.pp.expressCustoms

Definition at line 22 of file pp.py.

Referenced by Impl.pp.pp.expressProcessing().

Impl.pp.pp.expressModifiers

Definition at line 23 of file pp.py.

Referenced by Reco.Reco.expressProcessing().

Impl.pp.pp.promptCustoms

Definition at line 21 of file pp.py.

Referenced by Impl.pp.pp.promptReco().

Impl.pp.pp.recoSeq

Definition at line 19 of file pp.py.

Referenced by Reco.Reco.promptReco().

Impl.pp.pp.visCustoms

Definition at line 24 of file pp.py.

Referenced by Impl.pp.pp.visualizationProcessing().

Impl.pp.pp.visModifiers

Definition at line 25 of file pp.py.

Referenced by Reco.Reco.visualizationProcessing().