Skip to content
Snippets Groups Projects
Commit 4a73efc0 authored by FASER Reco's avatar FASER Reco
Browse files

Fixes to finish 2023 reprocessing

parent 432ce05f
No related branches found
No related tags found
2 merge requests!380Fixes to finish 2023 reprocessing,!351Merging Muon code to create new Database tag
Pipeline #6688510 passed
...@@ -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_WARNING("BCID " << i << " - " << int(bcid_mask[i])); ATH_MSG_DEBUG("BCID " << i << " - " << int(bcid_mask[i]));
} }
//ATH_MSG_WARNING(bcid_mask); //ATH_MSG_WARNING(bcid_mask);
......
...@@ -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"
# #
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment