Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 76702
b: "refs/heads/CMSSW_7_1_X"
c: 568a7dd
h: "refs/heads/CMSSW_7_1_X"
v: v3
  • Loading branch information
Andreas Pfeiffer committed Oct 30, 2009
1 parent 7b8172f commit bb318f4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
---
refs/heads/gh-pages: 09c786f70121f131b3715aaf3464996502bbeb7e
"refs/heads/CMSSW_7_1_X": 88c0b2d64afb6ce81cac11f56e8220f9c47b6bf6
"refs/heads/CMSSW_7_1_X": 568a7dd6b94f472af3c4cd521d68cdb3d519fc0d
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import optparse
import sys
import os
import re
import Configuration.PyReleaseValidation
from Configuration.PyReleaseValidation.ConfigBuilder import ConfigBuilder, defaultOptions
import traceback
Expand Down Expand Up @@ -216,8 +217,10 @@
if len(sys.argv)==1:
raise "Event Type: ", "No event type specified!"

# check whether steps are compatible
if ("HLT" in options.step and "RECO" in options.step):
# check whether steps are compatible, but make sure we don't trigger on AlCaxyzHLT and L1Reco
hltRe = re.compile('.*[,\s]HLT[,\s].*')
recoRe = re.compile('.*[,\s]RECO[,\s].*')
if ( hltRe.match(str(options.step)) and recoRe.match(str(options.step))):
print "ERROR: HLT and RECO cannot be run in the same process"
sys.exit(1)

Expand Down

0 comments on commit bb318f4

Please sign in to comment.