-
Notifications
You must be signed in to change notification settings - Fork 61
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
ECal endcap turbine version 3 #426
base: main
Are you sure you want to change the base?
Conversation
…hen split into 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.
Hi @varnes
please get rid of all the unnecessary changes and of the commented code. Apart from that, the changes look good to me
FCCee/ALLEGRO/compact/ALLEGRO_o1_v03/HCalBarrel_TileCal_v02.xml
Outdated
Show resolved
Hide resolved
FCCee/ALLEGRO/compact/ALLEGRO_o1_v03/HCalEndcaps_ThreeParts_TileCal_v02.xml
Outdated
Show resolved
Hide resolved
double bathThicknessFront = aLcdd.constant<float>("BathThicknessFront"); | ||
double bathThicknessBack = aLcdd.constant<float>("BathThicknessBack"); | ||
|
||
// double cryoThicknessInner = aLcdd.constant<float>("CryoEMECThicknessInner"); |
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.
remove commented code
dd4hep::Tube bathOuterShape(bathRmin, bathRmax, bathDelZ); // make it 4 volumes + 5th for detector envelope | ||
dd4hep::Tube bathAndServicesOuterShape(cryoDim.rmin2(), cryoDim.rmax1(), caloDim.dz()); // make it 4 volumes + 5th for detector envelope | ||
// dd4hep::Tube bathAndServicesOuterShape(cryoDim.rmin2(), cryoDim.rmax1(), caloDim.dz()); // make it 4 volumes + 5th for detector envelope |
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.
remove commented code
@@ -647,17 +707,17 @@ namespace det { | |||
dd4hep::PlacedVolume envelopePositivePhysVol = endcapsAssembly.placeVolume(envelopeVol, envelopePositiveVolume_tr); | |||
envelopePositivePhysVol.addPhysVolID("side", 1); | |||
|
|||
dd4hep::DetElement caloPositiveDetElem(caloDetElem, "positive", 0); | |||
caloPositiveDetElem.setPlacement(envelopePositivePhysVol); | |||
// dd4hep::DetElement caloPositiveDetElem(caloDetElem, "positive", 0); |
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.
remove commented code
|
||
// make another placement for the negative z endcap | ||
dd4hep::Transform3D envelopeNegativeVolume_tr(dd4hep::RotationZYX( 0 ,0,180*dd4hep::deg), dd4hep::Translation3D(0, 0, -dim.z_offset())); | ||
dd4hep::PlacedVolume envelopeNegativePhysVol = | ||
endcapsAssembly.placeVolume(envelopeVol, envelopeNegativeVolume_tr); | ||
envelopeNegativePhysVol.addPhysVolID("side", -1); | ||
|
||
dd4hep::DetElement caloNegativeDetElem(caloDetElem, "negative", 0); | ||
caloNegativeDetElem.setPlacement(envelopeNegativePhysVol); | ||
// dd4hep::DetElement caloNegativeDetElem(caloDetElem, "negative", 0); |
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.
remove commented code
BEGINRELEASENOTES
This PR is to support v3 of the ECal endcap turbine geometry. In this version there is flexibility to set parameters separately for the three wheels, to calibrate the response in both dimensions along the surface of a blade, and the segment the readout in both directions as well. The readout unit cells are allowed to be smaller than the calibration cells.
(Note that the above changes were implemented in two steps, with the flexibility to set parameters separately introduced in "v2" of the geometry, and the remaining changes in v3. v2 was never included in a pull request.)
ENDRELEASENOTES