CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
mipVariable_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 
4 mipVariable = cms.PSet(
5  #required inputs
6  ComponentName = cms.string('mipVariable'),
7 
8  barrelEcalRecHitCollection = cms.InputTag('ecalRecHit:EcalRecHitsEB'),
9  endcapEcalRecHitCollection = cms.InputTag('ecalRecHit:EcalRecHitsEE'),
10 
11  #some of the variables use to get mipHalo bool
12  # These values could be improved with further study
13  YRangeFit = cms.double(7.0),
14  XRangeFit = cms.double(180.0),
15  ResidualWidth = cms.double(0.23),
16  HaloDiscThreshold = cms.double(70.0)
17 )
18 
19