-
Notifications
You must be signed in to change notification settings - Fork 70
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
WIP: development of Drift Chamber for CEPC #13
Conversation
mirguest
commented
Aug 31, 2020
•
edited
Loading
edited
- detector description (DD4hep)
- The dimensions are defined as the constants (See commit 2d3a664)
- Envelope for the Drift Chamber
- radii: 235 mm, 1716 mm
- z: -2225 mm, 2225 mm
- inner chamber
- radii: 235 mm, 909 mm
- z: -2225 mm, 2225 mm
- outer chamber
- radii: 1085 mm, 1716 mm
- z: -2225 mm, 2225 mm
- silicon between inner and outer chamber
- B-Field: 3 Tesla, uniform: See commit a663edc
- detector response (Geant4 Sensitive Detector)
- register the Tracker SD for Drift Chamber as the first step.
- need a specific SD for Drift Chamber to simulate:
- the drift distance and time
- dE/dx
- Need a DD4hep Segmentation to calculate the CellID
- digitization
- Definition of the cellID
- system: 8bit
- chamber: 1bit (0: inner, 1: outer)
- layer: 7bit (for inner: 67 layers, for outer: 63 layers)
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.
Do you have the example to run the simulation? And it would be better to have a basic analysis of validate the output of the simulation.
|
||
dd4hep::Material det_mat(theDetector.material("Air")); | ||
|
||
dd4hep::Tube det_solid(23.5, 171.6, 222.5); |
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.
Shall we make the numbers based on a unified unit system in the CEPCSW?
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.
The dimensions are moved to the xml file. See commit 2d3a664
Hi @xshi , Tao |