Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Custom Phase-2 L1 Trigger NanoAOD #47178

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Fix P2L1nano wfs
  • Loading branch information
artlbv committed Jan 23, 2025
commit 87866bae26bec58e3f82c6b839bc9bb2ca7c3b3a
Original file line number Diff line number Diff line change
@@ -1720,20 +1720,22 @@ def condition(self, fragment, stepList, key, hasHarvest):
offset = 0.78
)

upgradeWFs['L1CompleteWithNano'] = deepcopy(upgradeWFs['L1Complete'])
# use HLTTiming75e33 template as it skips the steps after DIGI
upgradeWFs['L1CompleteWithNano'] = deepcopy(upgradeWFs['HLTTiming75e33'])
upgradeWFs['L1CompleteWithNano'].suffix = '_L1CompleteWithNano'
upgradeWFs['L1CompleteWithNano'].offset = 0.79
upgradeWFs['L1CompleteWithNano'].offset = 0.781
upgradeWFs['L1CompleteWithNano'].step2 = {
'-s': 'DIGI:pdigi_valid,L1,L1TrackTrigger,L1P2GT,DIGI2RAW,HLT:@relvalRun4:NANO:@Phase2L1DPG',
'-s': 'DIGI:pdigi_valid,L1,L1TrackTrigger,L1P2GT,DIGI2RAW,HLT:@relvalRun4,NANO:@Phase2L1DPG',
'--datatier':'GEN-SIM-DIGI-RAW,NANOAODSIM',
'--eventcontent':'FEVTDEBUGHLT,NANOAODSIM'
}

upgradeWFs['L1NANOonly'] = deepcopy(upgradeWFs['L1Complete'])
upgradeWFs['L1NANOonly'].suffix = '_L1NANOonly'
upgradeWFs['L1NANOonly'].offset = 0.791
upgradeWFs['L1NANOonly'].step2 = {
'-s': 'DIGI:pdigi_valid,NANO:@Phase2L1DPG',
upgradeWFs['L1CompleteOnlyNano'] = deepcopy(upgradeWFs['L1CompleteWithNano'])
upgradeWFs['L1CompleteOnlyNano'].suffix = '_L1CompleteOnlyNano'
upgradeWFs['L1CompleteOnlyNano'].offset = 0.782
upgradeWFs['L1CompleteOnlyNano'].step2 = {
# '-s': 'NANO:@Phase2L1DPG',
'-s': 'DIGI:pdigi_valid,L1,L1TrackTrigger,L1P2GT,DIGI2RAW,HLT:@relvalRun4,NANO:@Phase2L1DPG',
'--datatier':'NANOAODSIM',
'--eventcontent':'NANOAODSIM'
}