1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#!/usr/bin/env python3
"""
_hcalnzs_
Scenario supporting proton collisions
"""
import os
import sys
from Configuration.DataProcessing.Impl.pp import pp
class hcalnzs(pp):
def __init__(self):
pp.__init__(self)
self.recoSeq=':reconstruction_HcalNZS'
self.cbSc='pp'
"""
_hcalnzs_
Implement configuration building for data processing for proton
collision data taking
"""
def promptReco(self, globalTag, **args):
"""
_promptReco_
Proton collision data taking prompt reco
"""
if not 'skims' in args:
args['skims']=['HcalCalMinBias']
process = pp.promptReco(self,globalTag,**args)
return process
|