test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
particleFlowCluster_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 
4 #from RecoParticleFlow.PFClusterProducer.towerMakerPF_cfi import *
5 #from RecoParticleFlow.PFClusterProducer.particleFlowCaloResolution_cfi import _timeResolutionHCALMaxSample
6 
12 
15 
16 
23 
24 
25 pfClusteringECAL = cms.Sequence(particleFlowRecHitECAL*
26  particleFlowClusterECALUncorrected *
27  particleFlowClusterECAL)
28 pfClusteringPS = cms.Sequence(particleFlowRecHitPS*particleFlowClusterPS)
29 
30 
31 #pfClusteringHBHEHF = cms.Sequence(towerMakerPF*particleFlowRecHitHCAL*particleFlowClusterHCAL+particleFlowClusterHFHAD+particleFlowClusterHFEM)
32 pfClusteringHBHEHF = cms.Sequence(particleFlowRecHitHBHE*particleFlowRecHitHF*particleFlowClusterHBHE*particleFlowClusterHF*particleFlowClusterHCAL)
33 pfClusteringHO = cms.Sequence(particleFlowRecHitHO*particleFlowClusterHO)
34 
35 
36 particleFlowClusterWithoutHO = cms.Sequence(
37  pfClusteringPS*
38  pfClusteringECAL*
39  pfClusteringHBHEHF
40 )
41 
42 particleFlowCluster = cms.Sequence(
43  pfClusteringPS*
44  pfClusteringECAL*
45  pfClusteringHBHEHF*
46  pfClusteringHO
47 )
48 
49