Skip to content

Commit

Permalink
set the timeThreshold in hltOnlineBeamSpotESProducer_cfi in order to …
Browse files Browse the repository at this point in the history
…accept the online beamspot objects stored in DB even if they are older than 48h
  • Loading branch information
mmusich committed May 7, 2023
1 parent ecd817c commit 30121dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import FWCore.ParameterSet.Config as cms

hltOnlineBeamSpotESProducer = cms.ESProducer("OnlineBeamSpotESProducer",
timeThreshold = cms.int32( 48 ),
timeThreshold = cms.int32( 1e6 ), # we do want to read the DB even if it's old
sigmaZThreshold = cms.double( 2.0 ),
sigmaXYThreshold = cms.double( 4.0 )
)

0 comments on commit 30121dd

Please sign in to comment.