ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/auterman/Analysis/FinalPlots/python/finalplots_cfi.py
Revision: 1.2
Committed: Wed Apr 14 15:45:21 2010 UTC (15 years ago) by auterman
Content type: text/x-python
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +9 -1 lines
Error occurred while calculating annotation data.
Log Message:
*** empty log message ***

File Contents

# Content
1 import FWCore.ParameterSet.Config as cms
2
3 finalPlot = cms.EDAnalyzer('FinalPlots',
4 Jet = cms.InputTag('selectedLayer1Jets'),
5 MET = cms.InputTag('layer1METs'),
6 uncertainty_name = cms.string( ''),
7 weightName = cms.InputTag('weight'),
8 JetPtMin = cms.double( 30.0 ),
9 JetEtaMax = cms.double( 2.4 ),
10 #
11 Towers = cms.InputTag("towerMaker"),
12 Tracks = cms.InputTag("ctfWithMaterialTracks"),
13 GroupNTowers = cms.int32( 3 ),
14 TowerDeltaEtaMax = cms.double( 0.3 ),
15 TowerDeltaPhiMax = cms.double( 0.3 ),
16 #
17 TrackEtaMax = cms.double( 2.4 ),
18 TrackPtMin = cms.double( 0.0 ),
19 TrackChiSquareMax= cms.double( 8.0 ),
20 TrackNumOfHitsMin= cms.int32( 10 ),
21 TrackDeltaRMin = cms.double( 0.5 ),
22 )
23