Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:32:35

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from Validation.HGCalValidation.hgcalRecHitStudyEE_cfi import *
0004 
0005 hfnoseRecHitStudy = hgcalRecHitStudyEE.clone(
0006     detectorName = "HGCalHFNoseSensitive",
0007     source   = "HGCalRecHit : HGCHFNoseRecHits",
0008     ifNose   = True,
0009     rMin     = 0,
0010     rMax     = 150,
0011     zMin     = 1000,
0012     zMax     = 1100,
0013     etaMin   = 2.5,
0014     etaMax   = 5.5,
0015     nBinR    = 150,
0016     nBinZ    = 100,
0017     nBinEta  = 150,
0018     layers   = 8,
0019     ifLayer  = True
0020     )