1 |
+ |
|
2 |
|
import FWCore.ParameterSet.Config as cms |
3 |
|
|
4 |
|
process = cms.Process('PAT') |
17 |
|
|
18 |
|
process.load('Configuration/StandardSequences/GeometryExtended_cff') |
19 |
|
|
20 |
+ |
process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') |
21 |
+ |
process.load('Configuration/StandardSequences/MagneticField_38T_cff') |
22 |
+ |
process.GlobalTag.globaltag = 'MC_37Y_V5::All' |
23 |
+ |
|
24 |
|
process.load('Configuration/StandardSequences/ReconstructionHeavyIons_cff') |
25 |
|
|
26 |
|
process.hiCentrality.produceHFhits = False |
29 |
|
process.hiCentrality.produceBasicClusters = False |
30 |
|
process.hiCentrality.produceZDChits = False |
31 |
|
process.hiCentrality.produceETmidRapidity = True |
32 |
< |
|
32 |
> |
process.hiCentrality.producePixelhits = True |
33 |
|
|
34 |
|
process.load('PhysicsTools.PatAlgos.patHeavyIonSequences_cff') |
35 |
|
from PhysicsTools.PatAlgos.tools.heavyIonTools import * |
41 |
|
process.load("HeavyIonsAnalysis.Configuration.analysisEventContent_cff") |
42 |
|
|
43 |
|
process.output = cms.OutputModule("PoolOutputModule", |
44 |
< |
process.jetTrkSkimContent, |
45 |
< |
fileName = cms.untracked.string("allenrichedNZS.root") |
46 |
< |
) |
44 |
> |
process.jetTrkSkimContent, |
45 |
> |
fileName = cms.untracked.string("allenrichedNZS.root") |
46 |
> |
) |
47 |
|
|
48 |
|
process.output.outputCommands.extend([ |
49 |
|
"keep recoVertexs_hiSelectedVertex__RECO", |
45 |
– |
# "keep *_hiSelectedTracks_*_*", |
50 |
|
"keep recoTracks_hiSelectedTracks__RECO", |
51 |
|
"keep recoPhotons_*_*_*" , |
52 |
< |
"keep edmTriggerResults_TriggerResults__HISIGNAL2" , |
53 |
< |
"keep triggerTriggerEvent_hltTriggerSummaryAOD__HISIGNAL2" |
52 |
> |
"keep edmTriggerResults_TriggerResults__*" , |
53 |
> |
"keep triggerTriggerEvent_hltTriggerSummaryAOD__*" |
54 |
|
]) |
55 |
|
|
56 |
|
process.prod = cms.Path( |
57 |
< |
# process.allTracks + |
57 |
> |
process.siPixelRecHits + |
58 |
|
process.iterativeConePu5CaloJets + |
59 |
+ |
process.kt4CaloJets + |
60 |
+ |
process.ak5CaloJets + |
61 |
|
process.hiCentrality + |
62 |
|
process.makeHeavyIonJets |
63 |
|
) |
67 |
|
|
68 |
|
process.out_step = cms.EndPath(process.output) |
69 |
|
|
70 |
+ |
|