Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
calypso
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
faser
calypso
Commits
4a73efc0
Commit
4a73efc0
authored
1 year ago
by
FASER Reco
Browse files
Options
Downloads
Patches
Plain Diff
Fixes to finish 2023 reprocessing
parent
432ce05f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!380
Fixes to finish 2023 reprocessing
,
!351
Merging Muon code to create new Database tag
Pipeline
#6688510
passed
1 year ago
Stage: build
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
LHCData/LHCDataAlgs/src/LHCDataAlg.cxx
+9
-5
9 additions, 5 deletions
LHCData/LHCDataAlgs/src/LHCDataAlg.cxx
PhysicsAnalysis/NtupleDumper/scripts/submit_faser_ntuple_maker.sh
+5
-1
5 additions, 1 deletion
...nalysis/NtupleDumper/scripts/submit_faser_ntuple_maker.sh
with
14 additions
and
6 deletions
LHCData/LHCDataAlgs/src/LHCDataAlg.cxx
+
9
−
5
View file @
4a73efc0
...
@@ -176,17 +176,21 @@ LHCDataAlg::findNearest(unsigned int bcid, const std::vector<unsigned char>& bci
...
@@ -176,17 +176,21 @@ LHCDataAlg::findNearest(unsigned int bcid, const std::vector<unsigned char>& bci
}
}
// If we got to here, there was no match
// If we got to here, there was no match
// This is possible if for instance all BCIDs are colliding and mask = 0x01
// Does the BCID make sense?
// Does the BCID make sense?
ATH_MSG_WARNING
(
"Couldn't find distance from BCID "
<<
bcid
<<
" and pattern "
<<
int
(
mask
)
<<
"!"
);
ATH_MSG_WARNING
(
"Couldn't find distance from BCID "
<<
bcid
<<
" and pattern "
<<
int
(
mask
)
<<
"!"
);
// Only print this out in debug, otherwise floods log file
int
b1
=
0
;
int
b1
=
0
;
int
b2
=
0
;
int
b2
=
0
;
int
col
=
0
;
int
col
=
0
;
for
(
int
i
=
0
;
i
<
3564
;
i
++
)
{
for
(
int
i
=
0
;
i
<
3564
;
i
++
)
{
if
(
mask
&
0x01
)
b1
++
;
if
(
bcid_
mask
[
i
]
&
0x01
)
b1
++
;
if
(
mask
&
0x02
)
b2
++
;
if
(
bcid_
mask
[
i
]
&
0x02
)
b2
++
;
if
(
mask
&
0x03
)
col
++
;
if
(
bcid_
mask
[
i
]
&
0x03
)
col
++
;
if
(
bcid_mask
[
i
]
>
0
)
ATH_MSG_
WARNIN
G
(
"BCID "
<<
i
<<
" - "
<<
int
(
bcid_mask
[
i
]));
ATH_MSG_
DEBU
G
(
"BCID "
<<
i
<<
" - "
<<
int
(
bcid_mask
[
i
]));
}
}
//ATH_MSG_WARNING(bcid_mask);
//ATH_MSG_WARNING(bcid_mask);
...
...
This diff is collapsed.
Click to expand it.
PhysicsAnalysis/NtupleDumper/scripts/submit_faser_ntuple_maker.sh
+
5
−
1
View file @
4a73efc0
...
@@ -269,7 +269,11 @@ export EOS_MGM_URL=root://eospublic.cern.ch
...
@@ -269,7 +269,11 @@ export EOS_MGM_URL=root://eospublic.cern.ch
#
#
# Run job
# Run job
#
#
faser_ntuple_maker.py
$last_file_str
$partialstr
$tagstr
$ismc
--slice
$slice
--files
$nfiles
$mergestr
$dir_path
"
$@
"
echo
echo
"Submit job:"
echo
faser_ntuple_maker.py
$last_file_str
$partialstr
$tagstr
$ismc
--slice
$slice
--files
$nfiles
$mergestr
"
$@
"
$dir_path
echo
faser_ntuple_maker.py
$last_file_str
$partialstr
$tagstr
$ismc
--slice
$slice
--files
$nfiles
$mergestr
"
$@
"
$dir_path
ntup_code
=
$?
ntup_code
=
$?
echo
"Return code:
$ntup_code
"
echo
"Return code:
$ntup_code
"
#
#
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment