Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas committed Dec 15, 2015
1 parent 86f1772 commit 4f60d13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Configuration/Applications/python/ConfigBuilder.py
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,7 @@ def define_Configs(self):
self.RAW2DIGIDefaultSeq='RawToDigi'
self.L1RecoDefaultSeq='L1Reco'
self.L1TrackTriggerDefaultSeq='L1TrackTrigger'
if 'RAW2DIGI' in self.stepMap and 'RECO' in self.stepMap:
if self._options.fast or ('RAW2DIGI' in self.stepMap and 'RECO' in self.stepMap):
self.RECODefaultSeq='reconstruction'
else:
self.RECODefaultSeq='reconstruction_fromRECO'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
pdatamix = cms.Sequence(mixData+postDMDigi+addPileupInfo)

from Configuration.StandardSequences.Eras import eras
if eras.fastSim.isChosen():
if eras.fastSim.isChosen():
# pretend these digis have been through digi2raw and raw2digi, by using the approprate aliases
# use an alias to make the mixed track collection available under the usual label
from FastSimulation.Configuration.DigiAliases_cff import loadDigiAliases
Expand Down

0 comments on commit 4f60d13

Please sign in to comment.