-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add a safety volume, and make the fall back warning/error verbose
--- yaml --- svn_rev: 87957 current_ref: refs/heads/l1t-devel-CMSSW_7_4_0_pre5 current_commit: 31f65a1 head_branch: refs/heads/l1t-devel-CMSSW_7_4_0_pre5 migrated_from: v3
- Loading branch information
Showing
4 changed files
with
28 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/l1t-devel-CMSSW_7_4_0_pre5: e5b49e9c99527b3f3b949564a37fca748f083511 | ||
refs/heads/l1t-devel-CMSSW_7_4_0_pre5: 31f65a1ad0909c73d0ad096a8dde8f04489c923e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
author: Francisco Yumiceva, Fermilab ([email protected]) | ||
version $Id: BeamSpotOnlineProducer.h,v 1.2 2010/03/02 17:29:47 yumiceva Exp $ | ||
version $Id: BeamSpotOnlineProducer.h,v 1.3 2010/04/15 19:40:27 yumiceva Exp $ | ||
________________________________________________________________**/ | ||
|
||
|
@@ -38,6 +38,7 @@ class BeamSpotOnlineProducer: public edm::EDProducer { | |
|
||
InputTag scalertag_; | ||
bool changeFrame_; | ||
double theMaxZ,theMaxR2; | ||
}; | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 4 additions & 2 deletions
6
trunk/RecoVertex/BeamSpotProducer/python/BeamSpotOnline_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
onlineBeamSpotProducer = cms.EDProducer('BeamSpotOnlineProducer', | ||
label = cms.InputTag('scalersRawToDigi'), | ||
changeToCMSCoordinates = cms.bool(False) | ||
label = cms.InputTag('scalersRawToDigi'), | ||
changeToCMSCoordinates = cms.bool(False), | ||
maxZ = cms.double(40), | ||
maxRadius = cms.double(2) | ||
) | ||
|