ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/ForwardAnalysis/Utilities/python/trackHistograms_cff.py
Revision: 1.1
Committed: Thu Aug 25 19:12:59 2011 UTC (13 years, 8 months ago) by antoniov
Content type: text/x-python
Branch: MAIN
CVS Tags: V01-01-01, V01-01-00, antoniov-forwardAnalysis-09Jul2012-v1, antoniov-forwardAnalysis-29Jun2012-v1, V01-00-00, antoniov-utilities-11Jun2012-v1, antoniov-forwardAnalysis-Oct072011-v1, sfonseca_10_04_2011, antoniov-forwardAnalysis-Sep182011-v1, antoniov-forwardAnalysis-Sep102011-v1, eliza_09_02_2011, sfonseca_08_26_2011, HEAD
Log Message:
moving plugins to ForwardAnalysis

File Contents

# User Rev Content
1 antoniov 1.1 import FWCore.ParameterSet.Config as cms
2    
3     trackPtHistogram = cms.PSet(
4     min = cms.untracked.double(0.),
5     max = cms.untracked.double(20.),
6     nbins = cms.untracked.int32(200),
7     name = cms.untracked.string('TrackPt'),
8     description = cms.untracked.string('track transverse momentum'),
9     plotquantity = cms.untracked.string('pt')
10     )
11    
12     trackEtaHistogram = cms.PSet(
13     min = cms.untracked.double(-3.0),
14     max = cms.untracked.double(3.0),
15     nbins = cms.untracked.int32(60),
16     name = cms.untracked.string('TrackEta'),
17     description = cms.untracked.string('track pseudo-rapidity'),
18     plotquantity = cms.untracked.string('eta')
19     )