Skip to content

Commit

Permalink
Merge pull request #3519 from franzoni/from-CMSSW_7_1_X_2014-04-25-14…
Browse files Browse the repository at this point in the history
…00_postLS1Customs

post ls1 customs: consolidate/fix
  • Loading branch information
davidlange6 committed Apr 27, 2014
2 parents c03b94e + c75ff90 commit 2a99900
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions SLHCUpgradeSimulations/Configuration/python/postLS1Customs.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

import FWCore.ParameterSet.Config as cms

from muonCustoms import customise_csc_PostLS1,customise_csc_hlt
from SLHCUpgradeSimulations.Configuration.muonCustoms import customise_csc_PostLS1,customise_csc_hlt


def customisePostLS1(process):
Expand Down Expand Up @@ -61,10 +61,11 @@ def customise_Validation(process):

def customise_Digi(process):
process=digiEventContent(process)
process.mix.digitizers.hcal.ho.photoelectronsToAnalog = cms.vdouble([4.0]*16)
process.mix.digitizers.hcal.ho.siPMCode = cms.int32(1)
process.mix.digitizers.hcal.ho.pixels = cms.int32(2500)
process.mix.digitizers.hcal.ho.doSiPMSmearing = cms.bool(False)
if hasattr(process,"mix.digitizers.hcal.ho"):
process.mix.digitizers.hcal.ho.photoelectronsToAnalog = cms.vdouble([4.0]*16)
process.mix.digitizers.hcal.ho.siPMCode = cms.int32(1)
process.mix.digitizers.hcal.ho.pixels = cms.int32(2500)
process.mix.digitizers.hcal.ho.doSiPMSmearing = cms.bool(False)
return process


Expand Down

0 comments on commit 2a99900

Please sign in to comment.