From f4a4a83bb646befcff446bcb7e27fc7c4f002460 Mon Sep 17 00:00:00 2001 From: Menglin Xu Date: Mon, 16 Jun 2025 06:29:54 +0000 Subject: [PATCH 1/2] Merge branch 'ut/bp-interface' into 'lcg-105-compat' Update UT beampipe interface + Fix Type B sensor thickness See merge request lhcb/Detector!516 --- Detector/UT/src/UT_geo.cpp | 9 +- .../components/Pipe/trunk/Magnet-UX851.xml | 10 - .../components/Regions/2024-v00.01/INFO.md | 1 + .../Regions/2024-v00.01/Regions-invisible.xml | 15 + .../Regions/2024-v00.01/Regions.xml | 15 + .../Regions/2024-v00.01/detector.xml | 94 +++ .../Regions/2024-v00.01/parameters.xml | 87 ++ .../2024-v00.01/visualization-invisible.xml | 27 + .../Regions/2024-v00.01/visualization.xml | 27 + compact/components/Regions/trunk/detector.xml | 18 +- .../components/Regions/trunk/parameters.xml | 2 + compact/components/UT/2024-v00.02/INFO.md | 7 + compact/components/UT/2024-v00.02/Module.xml | 311 +++++++ compact/components/UT/2024-v00.02/Sensor.xml | 128 +++ compact/components/UT/2024-v00.02/Stave.xml | 208 +++++ compact/components/UT/2024-v00.02/UT.xml | 16 + compact/components/UT/2024-v00.02/UTBox.xml | 245 ++++++ compact/components/UT/2024-v00.02/UTHalf.xml | 14 + .../components/UT/2024-v00.02/UTaULayer.xml | 41 + .../components/UT/2024-v00.02/UTaXLayer.xml | 41 + .../components/UT/2024-v00.02/UTbVLayer.xml | 41 + .../components/UT/2024-v00.02/UTbXLayer.xml | 42 + .../components/UT/2024-v00.02/conditions.xml | 69 ++ .../components/UT/2024-v00.02/detector.xml | 62 ++ .../components/UT/2024-v00.02/parameters.xml | 759 ++++++++++++++++++ compact/components/UT/trunk/UTBox.xml | 210 +++-- compact/components/UT/trunk/parameters.xml | 154 ++-- 27 files changed, 2525 insertions(+), 128 deletions(-) create mode 100644 compact/components/Regions/2024-v00.01/INFO.md create mode 100644 compact/components/Regions/2024-v00.01/Regions-invisible.xml create mode 100644 compact/components/Regions/2024-v00.01/Regions.xml create mode 100644 compact/components/Regions/2024-v00.01/detector.xml create mode 100644 compact/components/Regions/2024-v00.01/parameters.xml create mode 100644 compact/components/Regions/2024-v00.01/visualization-invisible.xml create mode 100644 compact/components/Regions/2024-v00.01/visualization.xml create mode 100644 compact/components/UT/2024-v00.02/INFO.md create mode 100644 compact/components/UT/2024-v00.02/Module.xml create mode 100644 compact/components/UT/2024-v00.02/Sensor.xml create mode 100644 compact/components/UT/2024-v00.02/Stave.xml create mode 100644 compact/components/UT/2024-v00.02/UT.xml create mode 100644 compact/components/UT/2024-v00.02/UTBox.xml create mode 100644 compact/components/UT/2024-v00.02/UTHalf.xml create mode 100644 compact/components/UT/2024-v00.02/UTaULayer.xml create mode 100644 compact/components/UT/2024-v00.02/UTaXLayer.xml create mode 100644 compact/components/UT/2024-v00.02/UTbVLayer.xml create mode 100644 compact/components/UT/2024-v00.02/UTbXLayer.xml create mode 100644 compact/components/UT/2024-v00.02/conditions.xml create mode 100644 compact/components/UT/2024-v00.02/detector.xml create mode 100644 compact/components/UT/2024-v00.02/parameters.xml diff --git a/Detector/UT/src/UT_geo.cpp b/Detector/UT/src/UT_geo.cpp index 1b1e0fa859..952ea42684 100644 --- a/Detector/UT/src/UT_geo.cpp +++ b/Detector/UT/src/UT_geo.cpp @@ -1236,8 +1236,13 @@ namespace { } } if ( m_build_jacket ) { - pv = lvUT.placeVolume( volume( "lvUTJacket" ), - Position( 0, 0, _toDouble( "UX851Rich1TTSplitZposIP-UTSystemZ" ) ) ); + try { + pv = lvUT.placeVolume( volume( "lvUTJacket" ), Position( 0, 0, _toDouble( "UTJacketZPos" ) ) ); + } catch ( std::runtime_error& e ) { + // In geometry_version < 2024-v00.02, UTJacketZPos was not defined + pv = lvUT.placeVolume( volume( "lvUTJacket" ), + Position( 0, 0, _toDouble( "UX851Rich1TTSplitZposIP-UTSystemZ" ) ) ); + } } if ( m_build_pipeheater ) { pv = lvUT.placeVolume( volume( "lvUTPipeHeater" ) ); } // registerVolume( lvUT.name(), lvUT ); diff --git a/compact/components/Pipe/trunk/Magnet-UX851.xml b/compact/components/Pipe/trunk/Magnet-UX851.xml index ce2d80526c..6c14df488c 100644 --- a/compact/components/Pipe/trunk/Magnet-UX851.xml +++ b/compact/components/Pipe/trunk/Magnet-UX851.xml @@ -33,13 +33,6 @@ - - diff --git a/compact/components/Regions/2024-v00.01/INFO.md b/compact/components/Regions/2024-v00.01/INFO.md new file mode 100644 index 0000000000..05c1cbd1f0 --- /dev/null +++ b/compact/components/Regions/2024-v00.01/INFO.md @@ -0,0 +1 @@ +In order to update UT beampipe interface which was implemented in EYETS 2023-2024, the lvMagnetRegion is modified to cut out a tube from its original box shape to avoid overlapping with protruding UT beampipe interface. diff --git a/compact/components/Regions/2024-v00.01/Regions-invisible.xml b/compact/components/Regions/2024-v00.01/Regions-invisible.xml new file mode 100644 index 0000000000..38acca7c40 --- /dev/null +++ b/compact/components/Regions/2024-v00.01/Regions-invisible.xml @@ -0,0 +1,15 @@ + + + + + + diff --git a/compact/components/Regions/2024-v00.01/Regions.xml b/compact/components/Regions/2024-v00.01/Regions.xml new file mode 100644 index 0000000000..2c5397a6a5 --- /dev/null +++ b/compact/components/Regions/2024-v00.01/Regions.xml @@ -0,0 +1,15 @@ + + + + + + diff --git a/compact/components/Regions/2024-v00.01/detector.xml b/compact/components/Regions/2024-v00.01/detector.xml new file mode 100644 index 0000000000..331929ee67 --- /dev/null +++ b/compact/components/Regions/2024-v00.01/detector.xml @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/compact/components/Regions/2024-v00.01/parameters.xml b/compact/components/Regions/2024-v00.01/parameters.xml new file mode 100644 index 0000000000..f84335711d --- /dev/null +++ b/compact/components/Regions/2024-v00.01/parameters.xml @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/compact/components/Regions/2024-v00.01/visualization-invisible.xml b/compact/components/Regions/2024-v00.01/visualization-invisible.xml new file mode 100644 index 0000000000..46bcfc9511 --- /dev/null +++ b/compact/components/Regions/2024-v00.01/visualization-invisible.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/compact/components/Regions/2024-v00.01/visualization.xml b/compact/components/Regions/2024-v00.01/visualization.xml new file mode 100644 index 0000000000..127a106841 --- /dev/null +++ b/compact/components/Regions/2024-v00.01/visualization.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/compact/components/Regions/trunk/detector.xml b/compact/components/Regions/trunk/detector.xml index 58109b1eb8..331929ee67 100644 --- a/compact/components/Regions/trunk/detector.xml +++ b/compact/components/Regions/trunk/detector.xml @@ -22,8 +22,13 @@ - + + + + + @@ -35,8 +40,13 @@ - + + + + + + + diff --git a/compact/components/Regions/trunk/parameters.xml b/compact/components/Regions/trunk/parameters.xml index 7cb7ed9f65..f84335711d 100644 --- a/compact/components/Regions/trunk/parameters.xml +++ b/compact/components/Regions/trunk/parameters.xml @@ -25,6 +25,8 @@ + + diff --git a/compact/components/UT/2024-v00.02/INFO.md b/compact/components/UT/2024-v00.02/INFO.md new file mode 100644 index 0000000000..120b8d852d --- /dev/null +++ b/compact/components/UT/2024-v00.02/INFO.md @@ -0,0 +1,7 @@ +Update UT-beam pipe interface in the following aspects + + +- Components 2,3,4 as illustrated in EDMS document: https://edms.cern.ch/document/2863462. Installed during YETS22-23, but some of them were not included in the geometry until this MR. +- 16-cm long x 5mm thick pyrogel around the beam pipe in the middle of UT. Installed during YETS23-24. +- The degisn of Airex ring (a.k.a. UT beam pipe collar) and HalfMoons are changed from https://edms.cern.ch/document/2797582 (design in YETS22-23) to https://edms.cern.ch/document/3061946 and https://edms.cern.ch/document/3062195 (design in YETS23-24) +- Change in Type B sensor thickness corresponds to https://gitlab.cern.ch/lhcb-conddb/DDDB/-/merge_requests/160 diff --git a/compact/components/UT/2024-v00.02/Module.xml b/compact/components/UT/2024-v00.02/Module.xml new file mode 100644 index 0000000000..e970a91150 --- /dev/null +++ b/compact/components/UT/2024-v00.02/Module.xml @@ -0,0 +1,311 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/compact/components/UT/2024-v00.02/Sensor.xml b/compact/components/UT/2024-v00.02/Sensor.xml new file mode 100644 index 0000000000..0edf7f602a --- /dev/null +++ b/compact/components/UT/2024-v00.02/Sensor.xml @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/compact/components/UT/2024-v00.02/Stave.xml b/compact/components/UT/2024-v00.02/Stave.xml new file mode 100644 index 0000000000..7bf12c7865 --- /dev/null +++ b/compact/components/UT/2024-v00.02/Stave.xml @@ -0,0 +1,208 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/compact/components/UT/2024-v00.02/UT.xml b/compact/components/UT/2024-v00.02/UT.xml new file mode 100644 index 0000000000..f17fdeeb61 --- /dev/null +++ b/compact/components/UT/2024-v00.02/UT.xml @@ -0,0 +1,16 @@ + + + + + + + diff --git a/compact/components/UT/2024-v00.02/UTBox.xml b/compact/components/UT/2024-v00.02/UTBox.xml new file mode 100644 index 0000000000..66eec6aa87 --- /dev/null +++ b/compact/components/UT/2024-v00.02/UTBox.xml @@ -0,0 +1,245 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/compact/components/UT/2024-v00.02/UTHalf.xml b/compact/components/UT/2024-v00.02/UTHalf.xml new file mode 100644 index 0000000000..6a0f3b1f67 --- /dev/null +++ b/compact/components/UT/2024-v00.02/UTHalf.xml @@ -0,0 +1,14 @@ + + + + + diff --git a/compact/components/UT/2024-v00.02/UTaULayer.xml b/compact/components/UT/2024-v00.02/UTaULayer.xml new file mode 100644 index 0000000000..cf80bd6038 --- /dev/null +++ b/compact/components/UT/2024-v00.02/UTaULayer.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/compact/components/UT/2024-v00.02/UTaXLayer.xml b/compact/components/UT/2024-v00.02/UTaXLayer.xml new file mode 100644 index 0000000000..59934dacd5 --- /dev/null +++ b/compact/components/UT/2024-v00.02/UTaXLayer.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/compact/components/UT/2024-v00.02/UTbVLayer.xml b/compact/components/UT/2024-v00.02/UTbVLayer.xml new file mode 100644 index 0000000000..6825d7d96b --- /dev/null +++ b/compact/components/UT/2024-v00.02/UTbVLayer.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/compact/components/UT/2024-v00.02/UTbXLayer.xml b/compact/components/UT/2024-v00.02/UTbXLayer.xml new file mode 100644 index 0000000000..bf871e6e53 --- /dev/null +++ b/compact/components/UT/2024-v00.02/UTbXLayer.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/compact/components/UT/2024-v00.02/conditions.xml b/compact/components/UT/2024-v00.02/conditions.xml new file mode 100644 index 0000000000..0250992e50 --- /dev/null +++ b/compact/components/UT/2024-v00.02/conditions.xml @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/compact/components/UT/2024-v00.02/detector.xml b/compact/components/UT/2024-v00.02/detector.xml new file mode 100644 index 0000000000..e8f3b38fe6 --- /dev/null +++ b/compact/components/UT/2024-v00.02/detector.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + system:8,sensor:1,sector:1,module:3,face:1,stave:4,layer:2,side:1 + + + diff --git a/compact/components/UT/2024-v00.02/parameters.xml b/compact/components/UT/2024-v00.02/parameters.xml new file mode 100644 index 0000000000..7d976324fd --- /dev/null +++ b/compact/components/UT/2024-v00.02/parameters.xml @@ -0,0 +1,759 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/compact/components/UT/trunk/UTBox.xml b/compact/components/UT/trunk/UTBox.xml index 25e818fe03..66eec6aa87 100644 --- a/compact/components/UT/trunk/UTBox.xml +++ b/compact/components/UT/trunk/UTBox.xml @@ -26,54 +26,71 @@ + - - - - + - - + - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - + + - - + + - - + + + + + + - - + - + + @@ -90,42 +107,139 @@ - - + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + - - + + + - - + + - - + + + + + + + + + + + + + - - - - - - - - + + + + + - - + + diff --git a/compact/components/UT/trunk/parameters.xml b/compact/components/UT/trunk/parameters.xml index 647c67deba..7d976324fd 100644 --- a/compact/components/UT/trunk/parameters.xml +++ b/compact/components/UT/trunk/parameters.xml @@ -45,7 +45,7 @@ - + @@ -215,50 +215,61 @@ - - + + + + + + + - - - - + + - - - - - - - - + + + + + + + + + + + + - + + + + + + + - - - - + - - - + + + + @@ -270,24 +281,45 @@ - - + + - + - + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + @@ -502,16 +534,6 @@ - - - - - - - - - - @@ -599,7 +621,7 @@ - + @@ -620,17 +642,26 @@ + + + + + + - - - - - + + + - - - + + + + + + + + @@ -670,11 +701,6 @@ - - - - - @@ -707,13 +733,13 @@ - + - + -- GitLab From f8d2c333f475820befbd930cfecca2d597cafd0e Mon Sep 17 00:00:00 2001 From: Miroslav Saur Date: Sat, 4 Oct 2025 20:51:21 +0800 Subject: [PATCH 2/2] Checksum update --- .../checksums | 20 +++++++++---------- compact/run3/trunk/checksums | 20 +++++++++---------- compact/run4/trunk/checksums | 20 +++++++++---------- compact/run5/branch-baseline/checksums | 6 +++--- 4 files changed, 33 insertions(+), 33 deletions(-) diff --git a/compact/run3/before-rich1-geom-update-26052022/checksums b/compact/run3/before-rich1-geom-update-26052022/checksums index cd2b1ba0a0..5a3d2fc3c8 100644 --- a/compact/run3/before-rich1-geom-update-26052022/checksums +++ b/compact/run3/before-rich1-geom-update-26052022/checksums @@ -1,4 +1,4 @@ -/world_volume: 1789341451 +/world_volume: 1550915226 /world_volume/lvAfterMagnetRegion_3: 3911401405 /world_volume/lvAfterMagnetRegion_3/lvRich2Master_1: 1368806147 /world_volume/lvAfterMagnetRegion_3/lvRich2Master_1/pvRich2EntryWinTubeLock: 2067417882 @@ -48,7 +48,7 @@ /world_volume/lvAfterMagnetRegion_3/lvUX85BakeoutAfterMagnet_2: 905232799 /world_volume/lvAfterMagnetRegion_3/lvUX85SupportsAfterMagnet_4: 3203051945 /world_volume/lvAfterMagnetRegion_3/lvUX85SupportsAfterMagnet_4/pvUX853AfterMagnetCollar: 2932990174 -/world_volume/lvBeforeMagnetRegion_1: 572740552 +/world_volume/lvBeforeMagnetRegion_1: 1174244411 /world_volume/lvBeforeMagnetRegion_1/lvBeforeVelo_0: 969394431 /world_volume/lvBeforeMagnetRegion_1/lvBeforeVelo_0/lvBcmUp_1: 3863989257 /world_volume/lvBeforeMagnetRegion_1/lvBeforeVelo_0/lvBlockWallBefMag_0: 2798056924 @@ -62,14 +62,14 @@ /world_volume/lvBeforeMagnetRegion_1/lvRich1Master_1/pvRich1SubMaster: 600466472 /world_volume/lvBeforeMagnetRegion_1/lvRich1Master_1/pvUX851InRich1AfterSubM: 3629254175 /world_volume/lvBeforeMagnetRegion_1/lvRich1Master_1/pvUX851InRich1BeforeSubM: 734888376 -/world_volume/lvBeforeMagnetRegion_1/lvUT_3: 733506852 -/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTA_4: 2513958813 -/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTBoxPlug_2: 1910293213 -/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTBox_1: 980729092 -/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTC_3: 3900797383 +/world_volume/lvBeforeMagnetRegion_1/lvUT_3: 1464830097 +/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTA_4: 3464962573 +/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTBoxPlug_2: 1729663351 +/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTBox_1: 2733054024 +/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTC_3: 3016860759 /world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTFrame_0: 2002155028 -/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTJacket_5: 2354566694 -/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTPipeHeater_6: 2769758888 +/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTJacket_5: 3533654916 +/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTPipeHeater_6: 1907483245 /world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUX851InUT_7: 31157452 /world_volume/lvBeforeMagnetRegion_1/lvVP_2: 974646733 /world_volume/lvBeforeMagnetRegion_1/lvVP_2/lvVeloDownStreamPipe_6: 1791284487 @@ -124,7 +124,7 @@ /world_volume/lvDownstreamRegion_4/lvUX85SupportsDownstream_7/pvUX853CableDownstream04: 1641403997 /world_volume/lvDownstreamRegion_4/lvUX85SupportsDownstream_7/pvUX853DownstreamCollar: 423381431 /world_volume/lvDownstreamRegion_4/lvUX85SupportsDownstream_7/pvUX854SlSup: 2423248136 -/world_volume/lvMagnetRegion_2: 3987785721 +/world_volume/lvMagnetRegion_2: 2910351921 /world_volume/lvMagnetRegion_2/MagnetEnvelope_0: 1133940338 /world_volume/lvMagnetRegion_2/MagnetEnvelope_0/Left_Vertical_Part: 1597222043 /world_volume/lvMagnetRegion_2/MagnetEnvelope_0/LowerCoil: 610936026 diff --git a/compact/run3/trunk/checksums b/compact/run3/trunk/checksums index fe7a87e6de..df2c2491c0 100644 --- a/compact/run3/trunk/checksums +++ b/compact/run3/trunk/checksums @@ -1,4 +1,4 @@ -/world_volume: 734658399 +/world_volume: 488621774 /world_volume/lvAfterMagnetRegion_3: 2277670334 /world_volume/lvAfterMagnetRegion_3/lvRich2Master_1: 3260302501 /world_volume/lvAfterMagnetRegion_3/lvRich2Master_1/pvRich2EntryWinTubeLock: 2067417882 @@ -48,7 +48,7 @@ /world_volume/lvAfterMagnetRegion_3/lvUX85BakeoutAfterMagnet_2: 905232799 /world_volume/lvAfterMagnetRegion_3/lvUX85SupportsAfterMagnet_4: 3203051945 /world_volume/lvAfterMagnetRegion_3/lvUX85SupportsAfterMagnet_4/pvUX853AfterMagnetCollar: 2932990174 -/world_volume/lvBeforeMagnetRegion_1: 260016582 +/world_volume/lvBeforeMagnetRegion_1: 1755403829 /world_volume/lvBeforeMagnetRegion_1/lvBeforeVelo_0: 969394431 /world_volume/lvBeforeMagnetRegion_1/lvBeforeVelo_0/lvBcmUp_1: 3863989257 /world_volume/lvBeforeMagnetRegion_1/lvBeforeVelo_0/lvBlockWallBefMag_0: 2798056924 @@ -62,14 +62,14 @@ /world_volume/lvBeforeMagnetRegion_1/lvRich1Master_1/pvRich1SubMaster: 3266574560 /world_volume/lvBeforeMagnetRegion_1/lvRich1Master_1/pvUX851InRich1AfterSubM: 3629254175 /world_volume/lvBeforeMagnetRegion_1/lvRich1Master_1/pvUX851InRich1BeforeSubM: 734888376 -/world_volume/lvBeforeMagnetRegion_1/lvUT_3: 733506852 -/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTA_4: 2513958813 -/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTBoxPlug_2: 1910293213 -/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTBox_1: 980729092 -/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTC_3: 3900797383 +/world_volume/lvBeforeMagnetRegion_1/lvUT_3: 1464830097 +/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTA_4: 3464962573 +/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTBoxPlug_2: 1729663351 +/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTBox_1: 2733054024 +/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTC_3: 3016860759 /world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTFrame_0: 2002155028 -/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTJacket_5: 2354566694 -/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTPipeHeater_6: 2769758888 +/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTJacket_5: 3533654916 +/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTPipeHeater_6: 1907483245 /world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUX851InUT_7: 31157452 /world_volume/lvBeforeMagnetRegion_1/lvVP_2: 4239748891 /world_volume/lvBeforeMagnetRegion_1/lvVP_2/CellFixed_5: 1544849230 @@ -125,7 +125,7 @@ /world_volume/lvDownstreamRegion_4/lvUX85SupportsDownstream_7/pvUX853CableDownstream04: 1641403997 /world_volume/lvDownstreamRegion_4/lvUX85SupportsDownstream_7/pvUX853DownstreamCollar: 423381431 /world_volume/lvDownstreamRegion_4/lvUX85SupportsDownstream_7/pvUX854SlSup: 2423248136 -/world_volume/lvMagnetRegion_2: 3987785721 +/world_volume/lvMagnetRegion_2: 2910351921 /world_volume/lvMagnetRegion_2/MagnetEnvelope_0: 1133940338 /world_volume/lvMagnetRegion_2/MagnetEnvelope_0/Left_Vertical_Part: 1597222043 /world_volume/lvMagnetRegion_2/MagnetEnvelope_0/LowerCoil: 610936026 diff --git a/compact/run4/trunk/checksums b/compact/run4/trunk/checksums index fe7a87e6de..df2c2491c0 100644 --- a/compact/run4/trunk/checksums +++ b/compact/run4/trunk/checksums @@ -1,4 +1,4 @@ -/world_volume: 734658399 +/world_volume: 488621774 /world_volume/lvAfterMagnetRegion_3: 2277670334 /world_volume/lvAfterMagnetRegion_3/lvRich2Master_1: 3260302501 /world_volume/lvAfterMagnetRegion_3/lvRich2Master_1/pvRich2EntryWinTubeLock: 2067417882 @@ -48,7 +48,7 @@ /world_volume/lvAfterMagnetRegion_3/lvUX85BakeoutAfterMagnet_2: 905232799 /world_volume/lvAfterMagnetRegion_3/lvUX85SupportsAfterMagnet_4: 3203051945 /world_volume/lvAfterMagnetRegion_3/lvUX85SupportsAfterMagnet_4/pvUX853AfterMagnetCollar: 2932990174 -/world_volume/lvBeforeMagnetRegion_1: 260016582 +/world_volume/lvBeforeMagnetRegion_1: 1755403829 /world_volume/lvBeforeMagnetRegion_1/lvBeforeVelo_0: 969394431 /world_volume/lvBeforeMagnetRegion_1/lvBeforeVelo_0/lvBcmUp_1: 3863989257 /world_volume/lvBeforeMagnetRegion_1/lvBeforeVelo_0/lvBlockWallBefMag_0: 2798056924 @@ -62,14 +62,14 @@ /world_volume/lvBeforeMagnetRegion_1/lvRich1Master_1/pvRich1SubMaster: 3266574560 /world_volume/lvBeforeMagnetRegion_1/lvRich1Master_1/pvUX851InRich1AfterSubM: 3629254175 /world_volume/lvBeforeMagnetRegion_1/lvRich1Master_1/pvUX851InRich1BeforeSubM: 734888376 -/world_volume/lvBeforeMagnetRegion_1/lvUT_3: 733506852 -/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTA_4: 2513958813 -/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTBoxPlug_2: 1910293213 -/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTBox_1: 980729092 -/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTC_3: 3900797383 +/world_volume/lvBeforeMagnetRegion_1/lvUT_3: 1464830097 +/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTA_4: 3464962573 +/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTBoxPlug_2: 1729663351 +/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTBox_1: 2733054024 +/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTC_3: 3016860759 /world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTFrame_0: 2002155028 -/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTJacket_5: 2354566694 -/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTPipeHeater_6: 2769758888 +/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTJacket_5: 3533654916 +/world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUTPipeHeater_6: 1907483245 /world_volume/lvBeforeMagnetRegion_1/lvUT_3/lvUX851InUT_7: 31157452 /world_volume/lvBeforeMagnetRegion_1/lvVP_2: 4239748891 /world_volume/lvBeforeMagnetRegion_1/lvVP_2/CellFixed_5: 1544849230 @@ -125,7 +125,7 @@ /world_volume/lvDownstreamRegion_4/lvUX85SupportsDownstream_7/pvUX853CableDownstream04: 1641403997 /world_volume/lvDownstreamRegion_4/lvUX85SupportsDownstream_7/pvUX853DownstreamCollar: 423381431 /world_volume/lvDownstreamRegion_4/lvUX85SupportsDownstream_7/pvUX854SlSup: 2423248136 -/world_volume/lvMagnetRegion_2: 3987785721 +/world_volume/lvMagnetRegion_2: 2910351921 /world_volume/lvMagnetRegion_2/MagnetEnvelope_0: 1133940338 /world_volume/lvMagnetRegion_2/MagnetEnvelope_0/Left_Vertical_Part: 1597222043 /world_volume/lvMagnetRegion_2/MagnetEnvelope_0/LowerCoil: 610936026 diff --git a/compact/run5/branch-baseline/checksums b/compact/run5/branch-baseline/checksums index 003e854e86..e422d76047 100644 --- a/compact/run5/branch-baseline/checksums +++ b/compact/run5/branch-baseline/checksums @@ -1,4 +1,4 @@ -/world_volume: 1289401811 +/world_volume: 1730923363 /world_volume/lvAfterMagnetRegion_3: 2838017651 /world_volume/lvAfterMagnetRegion_3/lvRich2Master_1: 3260302501 /world_volume/lvAfterMagnetRegion_3/lvRich2Master_1/pvRich2EntryWinTubeLock: 2067417882 @@ -49,7 +49,7 @@ /world_volume/lvAfterMagnetRegion_3/lvUX85BakeoutAfterMagnet_2: 905232799 /world_volume/lvAfterMagnetRegion_3/lvUX85SupportsAfterMagnet_4: 3203051945 /world_volume/lvAfterMagnetRegion_3/lvUX85SupportsAfterMagnet_4/pvUX853AfterMagnetCollar: 2932990174 -/world_volume/lvBeforeMagnetRegion_1: 1831933811 +/world_volume/lvBeforeMagnetRegion_1: 4229809929 /world_volume/lvBeforeMagnetRegion_1/lvBeforeVelo_0: 969394431 /world_volume/lvBeforeMagnetRegion_1/lvBeforeVelo_0/lvBcmUp_1: 3863989257 /world_volume/lvBeforeMagnetRegion_1/lvBeforeVelo_0/lvBlockWallBefMag_0: 2798056924 @@ -123,7 +123,7 @@ /world_volume/lvDownstreamRegion_4/lvUX85SupportsDownstream_7/pvUX853CableDownstream04: 1641403997 /world_volume/lvDownstreamRegion_4/lvUX85SupportsDownstream_7/pvUX853DownstreamCollar: 423381431 /world_volume/lvDownstreamRegion_4/lvUX85SupportsDownstream_7/pvUX854SlSup: 2423248136 -/world_volume/lvMagnetRegion_2: 3987785721 +/world_volume/lvMagnetRegion_2: 2910351921 /world_volume/lvMagnetRegion_2/MagnetEnvelope_0: 1133940338 /world_volume/lvMagnetRegion_2/MagnetEnvelope_0/Left_Vertical_Part: 1597222043 /world_volume/lvMagnetRegion_2/MagnetEnvelope_0/LowerCoil: 610936026 -- GitLab