CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
GlobalHaloData_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 # File: GlobalHaloData_cfi.py
3 # Original Author: R. Remington, The University of Florida
4 # Description: Module to build GlobalHaloData Object and put into the event
5 # Date: Oct. 15, 2009
6 
7 GlobalHaloData = cms.EDProducer("GlobalHaloDataProducer",
8  # Higher Level Reco
9  metLabel = cms.InputTag("caloMet"),
10  calotowerLabel = cms.InputTag("towerMaker"),
11  CSCSegmentLabel = cms.InputTag("cscSegments"),
12  CSCRecHitLabel = cms.InputTag("csc2DRecHits"),
13  MuonLabel = cms.InputTag("muons"),
14  EcalMinMatchingRadiusParam = cms.double(110.),
15  EcalMaxMatchingRadiusParam = cms.double(330.),
16 
17  HcalMinMatchingRadiusParam = cms.double(110.),
18  HcalMaxMatchingRadiusParam = cms.double(490.),
19 
20  CSCHaloDataLabel = cms.InputTag("CSCHaloData"),
21  EcalHaloDataLabel = cms.InputTag("EcalHaloData"),
22  HcalHaloDataLabel = cms.InputTag("HcalHaloData"),
23 
24  CaloTowerEtThresholdParam = cms.double(0.3),
25 
26  #Parameters for CSC-calo matching
27  MaxSegmentTheta = cms.double(0.7),
28 
29  rh_et_threshforcscmatching_eb = cms.double(10.),
30  rcalominrsegm_lowthresh_eb = cms.double(-30.),
31  rcalominrsegm_highthresh_eb = cms.double(15.),
32  dtcalosegm_thresh_eb = cms.double(15.),
33  dphicalosegm_thresh_eb = cms.double(0.04),
34 
35  rh_et_threshforcscmatching_ee = cms.double(10.),
36  rcalominrsegm_lowthresh_ee = cms.double(-30.),
37  rcalominrsegm_highthresh_ee = cms.double(30.),
38  dtcalosegm_thresh_ee = cms.double(15.),
39  dphicalosegm_thresh_ee = cms.double(0.04),
40 
41  rh_et_threshforcscmatching_hb = cms.double(20.),
42  rcalominrsegm_lowthresh_hb = cms.double(-100.),
43  rcalominrsegm_highthresh_hb = cms.double(20.),
44  dtcalosegm_thresh_hb = cms.double(15.),
45  dphicalosegm_thresh_hb = cms.double(0.15),
46 
47  rh_et_threshforcscmatching_he = cms.double(20.),
48  rcalominrsegm_lowthresh_he = cms.double(-30.),
49  rcalominrsegm_highthresh_he = cms.double(30.),
50  dtcalosegm_thresh_he = cms.double(15.),
51  dphicalosegm_thresh_he = cms.double(0.1),
52  IsHLT = cms.bool(False)
53 
54 
55  )
56 
57