-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Run3-gex24 Try to sort out the issue of SimHit for muons using dd4hep #31832
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
Changes from 4 commits
d3c347a
aaa0f06
4fec42d
0344b48
9092c57
cd30f3e
5f8afba
53de0fc
7f4ea15
b301e10
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 |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| #ifndef CondFormats_GeometryObjects_MuonOffsetMap_h | ||
| #define CondFormats_GeometryObjects_MuonOffsetMap_h | ||
|
|
||
| #include "CondFormats/Serialization/interface/Serializable.h" | ||
| #include <string> | ||
| #include <vector> | ||
| #include <unordered_map> | ||
|
|
||
| class MuonOffsetMap { | ||
| public: | ||
| MuonOffsetMap(void) {} | ||
| ~MuonOffsetMap(void) {} | ||
|
|
||
| std::unordered_map<std::string, std::pair<int, int> > muonMap_; | ||
|
|
||
| COND_SERIALIZABLE; | ||
| }; | ||
|
|
||
| #endif | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| #include "CondFormats/GeometryObjects/interface/MuonOffsetMap.h" | ||
| #include "FWCore/Utilities/interface/typelookup.h" | ||
|
|
||
| TYPELOOKUP_DATA_REG(MuonOffsetMap); |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -250,7 +250,7 @@ | |
| 'Geometry/MuonCommonData/data/mfshield/2017/v2/mfshield.xml', | ||
| )+ | ||
| cms.vstring( | ||
| 'Geometry/MuonCommonData/data/muonNumbering/2021/v2/muonNumbering.xml', | ||
| 'Geometry/MuonCommonData/data/muonNumbering/2021/v2x/muonNumbering.xml', | ||
|
||
| 'Geometry/ForwardCommonData/data/forward/2021/v1/forward.xml', | ||
| 'Geometry/ForwardCommonData/data/totemt2/2021/v1/totemt2.xml', | ||
| 'Geometry/ForwardCommonData/data/forwardshield/2021/v1/forwardshield.xml', | ||
|
|
||
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.
voidis probably unnecessary (also on next line)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.
Done