-
Notifications
You must be signed in to change notification settings - Fork 28
Adding truth info for FCC-ee ILD model, add vertex resolutions as inp… #188
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
base: master
Are you sure you want to change the base?
Changes from 1 commit
0422a8d
303def9
79fad74
09b8da3
6becb42
c0cf856
3b83b87
ab78066
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,7 +4,7 @@ | |
|
|
||
| from py_utils import encode_CT_steps_dict_to_legacy_list | ||
|
|
||
| CT_MAX_DIST = "0.03" # RANDOM VALUE COPYIED FROM CLDRECO | ||
| CT_MAX_DIST = "0.05" # RANDOM VALUE COPYIED FROM CLDRECO | ||
|
armin-ilg marked this conversation as resolved.
Outdated
|
||
| MCPartColName = ["MCParticle"] # MCParticleCollectionName | ||
| VertexBarrelHitCollectionNames = ["VertexBarrelTrackerHits"] | ||
| VertexEndcapHitCollectionNames = ["VertexEndcapTrackerHits"] | ||
|
|
@@ -38,15 +38,15 @@ | |
| "TrackStartsInnerDist": ["25"], | ||
| "TrackSystemName": ["DDKalTest"], | ||
| "VXDHitCollection": ["VertexBarrelTrackerHits"], | ||
| "VXDDetectorName": ["VertexBarrel"], | ||
| "VXDDetectorName": ["Vertex"], | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I haven't realized this before, but this has no effect as the next line overwrites the same property with
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh, this must have been introduced somewhere along the way, I'll fix it. |
||
| "pickUpSiHits": ["true"], | ||
| } | ||
|
|
||
| MyConformalTracking = MarlinProcessorWrapper("MyConformalTracking") | ||
| MyConformalTracking.ProcessorType = "ConformalTrackingV2" | ||
| conformal_tracking_steps_config = { | ||
| # Based on CLD's Reconstruction in CLDConfig | ||
| "VertexBarrel": { | ||
| "Vertex": { | ||
| "collections": ["VertexBarrelTrackerHits"], | ||
| "params": { | ||
| "MaxCellAngle": 0.01, | ||
|
|
@@ -60,7 +60,7 @@ | |
| "flags": ["HighPTFit", "VertexToTracker"], | ||
| "functions": ["CombineCollections", "BuildNewTracks"], | ||
| }, | ||
| "VertexEncap": { | ||
| "Vertex": { | ||
| "collections": ["VertexEndcapTrackerHits"], | ||
| "params": { | ||
| "MaxCellAngle": 0.01, | ||
|
|
@@ -92,20 +92,20 @@ | |
| "flags": ["HighPTFit", "VertexToTracker", "RadialSearch"], | ||
| "functions": ["CombineCollections", "BuildNewTracks"], | ||
| }, | ||
| # "LowerCellAngle2": { | ||
| # "collections": "", | ||
| # "params": { | ||
| # "MaxCellAngle": 0.1, | ||
| # "MaxCellAngleRZ": 0.1, | ||
| # "Chi2Cut": 2000, | ||
| # "MinClustersOnTrack": 4, | ||
| # "MaxDistance": CT_MAX_DIST, | ||
| # "SlopeZRange": 10.0, | ||
| # "HighPTCut": 10.0, | ||
| # }, | ||
| # "flags": ["HighPTFit", "VertexToTracker", "RadialSearch"], | ||
| # "functions": ["BuildNewTracks","SortTracks"], | ||
| # }, | ||
| "LowerCellAngle2": { | ||
| "collections": [""], | ||
| "params": { | ||
| "MaxCellAngle": 0.1, | ||
| "MaxCellAngleRZ": 0.1, | ||
| "Chi2Cut": 2000, | ||
| "MinClustersOnTrack": 4, | ||
| "MaxDistance": CT_MAX_DIST, | ||
| "SlopeZRange": 10.0, | ||
| "HighPTCut": 10.0, | ||
| }, | ||
| "flags": ["HighPTFit", "VertexToTracker", "RadialSearch"], | ||
| "functions": ["BuildNewTracks","SortTracks"], | ||
| }, | ||
|
armin-ilg marked this conversation as resolved.
|
||
| "Tracker": { | ||
| "collections": ["InnerTrackerBarrelHits", "InnerTrackerEndcapHits"], | ||
| "params": { | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.