ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/GPetrucc/python/edmLumi_cfi.py
Revision: 1.5
Committed: Wed Jul 7 07:54:55 2010 UTC (14 years, 9 months ago) by gpetrucc
Content type: text/x-python
Branch: MAIN
CVS Tags: HEAD
Changes since 1.4: +8 -2 lines
Log Message:
Use online lumi from lumiCalc 'lumibyls'

File Contents

# User Rev Content
1 gpetrucc 1.1 import FWCore.ParameterSet.Config as cms
2    
3     edmLumi = cms.EDFilter("EdmLumi",
4 gpetrucc 1.3 lumi_by_LS_all_csv = cms.untracked.string("UserCode/GPetrucc/data/lumi_by_LS_all.csv"),
5 gpetrucc 1.4 method = cms.string("vertex"),
6 gpetrucc 1.3 #prescale_by_run = cms.untracked.string("UserCode/GPetrucc/data/HLT_Mu3.txt"),
7 gpetrucc 1.1 scale = cms.double(4.29e+28)
8     )
9 gpetrucc 1.5 edmLumiHF = edmLumi.clone(method = "hf")
10     edmLumiOnline = edmLumi.clone(
11     method = "online",
12     lumi_by_LS_all_csv = "UserCode/GPetrucc/data/lumi_by_LS_online.csv",
13     scale = cms.double(1)
14     )
15     Lumi_Path = cms.Path(edmLumi + edmLumiHF)
16     #Lumi_Path_Online = cms.Path(edmLumiOnline)