-
Notifications
You must be signed in to change notification settings - Fork 13
Move to Binary Data Files + Include 0.6 pT Maps #391
Conversation
@@ -145,7 +145,7 @@ namespace SDL { | |||
|
|||
// Temporary fix for module buffer allocation. | |||
const unsigned int modules_size = 26401; | |||
const unsigned int pix_tot = 1794686; | |||
const unsigned int pix_tot = 1795336; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm pretty sure this small change comes from my last PR on LSTGeometry where I consolidated the constants and changed B to be 3.8112 from 3.8 to keep it consistent with the Tracklooper definition.
/run standalone |
The PR was built and ran successfully in standalone mode. Here are some of the comparison plots. The full set of validation and comparison plots can be found here. |
The PR was built and ran successfully with CMSSW. Here are some plots. OOTB All TracksThe full set of validation and comparison plots can be found here. |
/run standalone |
The PR was built and ran successfully in standalone mode. Here are some of the comparison plots. The full set of validation and comparison plots can be found here. |
The PR was built and ran successfully with CMSSW. Here are some plots. OOTB All TracksThe full set of validation and comparison plots can be found here. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you @GNiendorf, this is great! All the changes look good to me and everything is working well. It's really nice to not have a bunch of giant text files floating around.
I'll approve the PR and merge it in a few hours in case anyone else has any comments.
This is beyond the scope of this PR, but I wanted to ask you what you would think about consolidating the data into a single binary file. Using our own format like in this PR would be too messy, but it could be done with a ROOT file. The benefit I can think of is having a single smaller file (since it's compressed), but it would add extra complexity so it could be just an extra nuisance.
Thank you @ariostas. I like your suggestion of moving everything to a single file, although that's probably a lot of work for what it's worth right now. Could be a good project though for a new student or later down the line if this becomes a larger issue. |
This PR moves the data files to a binary format and adds the 0.6 pT maps into the data dir.
Followup PR of SegmentLinking/LSTGeometry#11