From 0ec903370279758a4c40ac138c1cba29cbae609f Mon Sep 17 00:00:00 2001 From: Alexander Nozik Date: Tue, 14 Sep 2021 14:02:36 +0300 Subject: [PATCH] Add Trapezioid and scaled to root converter --- build.gradle.kts | 4 +- .../kotlin/ru/mipt/npm/root/DObject.kt | 12 +- .../kotlin/ru/mipt/npm/root/dRootToSolid.kt | 41 +- demo/gdml/src/jsMain/kotlin/drop/FileDrop.kt | 8 +- .../visionforge/gdml/demo/GDMLAppComponent.kt | 7 +- .../src/main/kotlin/gravityDemo.kt | 5 +- .../src/main/kotlin/markupComponent.kt | 4 +- .../src/main/kotlin/plotlyComponent.kt | 2 +- .../mipt/npm/muon/monitor/MMAppComponent.kt | 7 +- .../src/jvmMain/kotlin/rootParser.kt | 11 +- .../src/jvmMain/resources/root/BM@N.root.json | 26920 ---------------- .../jvmMain/resources/root/BM@N_geometry.zip | Bin 0 -> 84791 bytes settings.gradle.kts | 4 +- .../visionforge/bootstrap/outputConfig.kt | 11 +- .../visionforge/bootstrap/reactBootstrap.kt | 17 +- .../visionforge/bootstrap/tabComponent.kt | 8 +- .../visionforge/bootstrap/threeControls.kt | 9 +- .../kscience/visionforge/react/MetaViewer.kt | 19 +- .../visionforge/react/MultiSelectChooser.kt | 4 +- .../visionforge/react/PropertyEditor.kt | 4 +- .../visionforge/react/RangeValueChooser.kt | 4 +- .../visionforge/react/ThreeCanvasComponent.kt | 2 +- .../kscience/visionforge/react/VisionTree.kt | 4 +- .../kscience/visionforge/react/layout.kt | 5 +- .../visionforge/react/valueChooser.kt | 17 +- ui/ring/src/main/kotlin/ringui/Loader.kt | 5 +- .../src/main/kotlin/ringui/LoaderScreen.kt | 4 +- .../ThreeViewWithControls.kt | 4 +- .../ringThreeControls.kt | 15 +- 29 files changed, 153 insertions(+), 27004 deletions(-) delete mode 100644 demo/playground/src/jvmMain/resources/root/BM@N.root.json create mode 100644 demo/playground/src/jvmMain/resources/root/BM@N_geometry.zip diff --git a/build.gradle.kts b/build.gradle.kts index 1984e3d3..4ad95112 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,7 +1,7 @@ plugins { id("ru.mipt.npm.gradle.project") - kotlin("multiplatform") version "1.5.30" apply false - kotlin("js") version "1.5.30" apply false +// kotlin("multiplatform") version "1.5.30" apply false +// kotlin("js") version "1.5.30" apply false } val dataforgeVersion by extra("0.5.1") diff --git a/cern-root-loader/src/commonMain/kotlin/ru/mipt/npm/root/DObject.kt b/cern-root-loader/src/commonMain/kotlin/ru/mipt/npm/root/DObject.kt index 712e1a4e..9f4d1971 100644 --- a/cern-root-loader/src/commonMain/kotlin/ru/mipt/npm/root/DObject.kt +++ b/cern-root-loader/src/commonMain/kotlin/ru/mipt/npm/root/DObject.kt @@ -85,13 +85,23 @@ public class DGeoVolume(meta: Meta, refCache: DObjectCache) : DNamed(meta, refCa public val fFillColor: Int? by meta.int() override val name: Name by lazy { Name.parse(fName.ifEmpty { "volume[${meta.hashCode().toUInt()}]" }) } + + public val numberOfChildren: Int by lazy { + fNodes.sumOf { (it.fVolume?.numberOfChildren ?: 0) + 1 } + } } public class DGeoNode(meta: Meta, refCache: DObjectCache) : DNamed(meta, refCache) { public val fVolume: DGeoVolume? by dObject(::DGeoVolume) } -public class DGeoMatrix(meta: Meta, refCache: DObjectCache) : DNamed(meta, refCache) { +public open class DGeoMatrix(meta: Meta, refCache: DObjectCache) : DNamed(meta, refCache) + +public open class DGeoScale(meta: Meta, refCache: DObjectCache) : DGeoMatrix(meta, refCache) { + public val fScale: DoubleArray by meta.doubleArray(1.0, 1.0, 1.0) + public val x: Double get() = fScale[0] + public val y: Double get() = fScale[1] + public val z: Double get() = fScale[2] } diff --git a/cern-root-loader/src/commonMain/kotlin/ru/mipt/npm/root/dRootToSolid.kt b/cern-root-loader/src/commonMain/kotlin/ru/mipt/npm/root/dRootToSolid.kt index ed0b76fd..a11f1996 100644 --- a/cern-root-loader/src/commonMain/kotlin/ru/mipt/npm/root/dRootToSolid.kt +++ b/cern-root-loader/src/commonMain/kotlin/ru/mipt/npm/root/dRootToSolid.kt @@ -182,6 +182,7 @@ private fun SolidGroup.addShape( } } "TGeoPgon" -> { + //TODO add a inner polygone layer val fDphi by shape.meta.double(0.0) val fNz by shape.meta.int(2) val fPhi1 by shape.meta.double(360.0) @@ -219,6 +220,44 @@ private fun SolidGroup.addShape( "TGeoBBox" -> { box(shape.fDX * 2, shape.fDY * 2, shape.fDZ * 2, name = name, block = block) } + "TGeoTrap" -> { + val fTheta by shape.meta.double(0.0) + val fPhi by shape.meta.double(0.0) + val fAlpha1 by shape.meta.double(0.0) + val fAlpha2 by shape.meta.double(0.0) + if (fAlpha1 != 0.0 || fAlpha2 != 0.0 || fTheta != 0.0 || fPhi != 0.0) { + TODO("Angled trapezoid not implemented") + } + val fH1 by shape.meta.double(0.0) + val fBl1 by shape.meta.double(0.0) + val fTl1 by shape.meta.double(0.0) + val fH2 by shape.meta.double(0.0) + val fBl2 by shape.meta.double(0.0) + val fTl2 by shape.meta.double(0.0) + + val fDz by shape.meta.double(0.0) + //TODO check proper node order + val node1 = Point3D(-fBl1, -fH1, -fDz) + val node2 = Point3D(fBl1, -fH1, -fDz) + val node3 = Point3D(fTl1, fH1, -fDz) + val node4 = Point3D(-fTl1, fH1, -fDz) + val node5 = Point3D(-fBl2, -fH2, fDz) + val node6 = Point3D(fBl2, -fH2, fDz) + val node7 = Point3D(fTl2, fH2, fDz) + val node8 = Point3D(-fTl2, fH2, fDz) + hexagon(node1, node2, node3, node4, node5, node6, node7, node8, name) + } + "TGeoScaledShape" -> { + val fShape by shape.dObject(::DGeoShape) + val fScale by shape.dObject(::DGeoScale) + fShape?.let { scaledShape -> + group(name?.let { Name.parse(it) }) { + scale = Point3D(fScale?.x ?: 1.0, fScale?.y ?: 1.0, fScale?.z ?: 1.0) + addShape(scaledShape, context) + apply(block) + } + } + } else -> { TODO("A shape with type ${shape.typename} not implemented") } @@ -283,7 +322,7 @@ private fun SolidGroup.addRootVolume( block: Solid.() -> Unit = {} ) { //skip if maximum layer number is reached - if (context.bottomLayer > context.maxLayer){ + if (context.bottomLayer > context.maxLayer) { println("Maximum layer depth reached. Skipping ${volume.fName}") return } diff --git a/demo/gdml/src/jsMain/kotlin/drop/FileDrop.kt b/demo/gdml/src/jsMain/kotlin/drop/FileDrop.kt index a52343b0..635c4580 100644 --- a/demo/gdml/src/jsMain/kotlin/drop/FileDrop.kt +++ b/demo/gdml/src/jsMain/kotlin/drop/FileDrop.kt @@ -6,8 +6,8 @@ package drop import org.w3c.dom.DragEvent import org.w3c.files.FileList import react.Component -import react.RProps -import react.RState +import react.Props +import react.State external enum class DropEffects { copy, @@ -16,7 +16,7 @@ external enum class DropEffects { none } -external interface FileDropProps: RProps { +external interface FileDropProps: Props { var className: String? var targetClassName: String? var draggingOverFrameClassName: String? @@ -32,7 +32,7 @@ external interface FileDropProps: RProps { var dropEffect: DropEffects? } -external interface FileDropState: RState { +external interface FileDropState: State { var draggingOverFrame: Boolean var draggingOverTarget: Boolean } diff --git a/demo/gdml/src/jsMain/kotlin/space/kscience/visionforge/gdml/demo/GDMLAppComponent.kt b/demo/gdml/src/jsMain/kotlin/space/kscience/visionforge/gdml/demo/GDMLAppComponent.kt index 4c4fc43c..ae8b8ac8 100644 --- a/demo/gdml/src/jsMain/kotlin/space/kscience/visionforge/gdml/demo/GDMLAppComponent.kt +++ b/demo/gdml/src/jsMain/kotlin/space/kscience/visionforge/gdml/demo/GDMLAppComponent.kt @@ -7,8 +7,11 @@ import kotlinx.css.* import org.w3c.files.File import org.w3c.files.FileReader import org.w3c.files.get -import react.* +import react.RProps import react.dom.h2 +import react.functionComponent +import react.useMemo +import react.useState import space.kscience.dataforge.context.Context import space.kscience.dataforge.context.fetch import space.kscience.dataforge.names.Name @@ -31,7 +34,7 @@ external interface GDMLAppProps : RProps { } @JsExport -val GDMLApp = functionalComponent("GDMLApp") { props -> +val GDMLApp = functionComponent("GDMLApp") { props -> val visionManager = useMemo(props.context) { props.context.fetch(Solids).visionManager } var deferredVision: Deferred by useState { CompletableDeferred(props.vision) diff --git a/demo/js-playground/src/main/kotlin/gravityDemo.kt b/demo/js-playground/src/main/kotlin/gravityDemo.kt index eec16afe..e6f2273a 100644 --- a/demo/js-playground/src/main/kotlin/gravityDemo.kt +++ b/demo/js-playground/src/main/kotlin/gravityDemo.kt @@ -3,8 +3,7 @@ import kotlinx.coroutines.isActive import kotlinx.coroutines.launch import kotlinx.css.* import react.RProps -import react.child -import react.functionalComponent +import react.functionComponent import space.kscience.dataforge.context.Context import space.kscience.plotly.layout import space.kscience.plotly.models.Trace @@ -21,7 +20,7 @@ external interface DemoProps : RProps { var context: Context } -val GravityDemo = functionalComponent { props -> +val GravityDemo = functionComponent { props -> val velocityTrace = Trace{ name = "velocity" } diff --git a/demo/js-playground/src/main/kotlin/markupComponent.kt b/demo/js-playground/src/main/kotlin/markupComponent.kt index 879ab3df..52696f8a 100644 --- a/demo/js-playground/src/main/kotlin/markupComponent.kt +++ b/demo/js-playground/src/main/kotlin/markupComponent.kt @@ -7,7 +7,7 @@ import org.intellij.markdown.flavours.gfm.GFMFlavourDescriptor import org.w3c.dom.Element import org.w3c.dom.HTMLElement import react.RProps -import react.functionalComponent +import react.functionComponent import react.useEffect import react.useRef import space.kscience.visionforge.markup.VisionOfMarkup @@ -20,7 +20,7 @@ external interface MarkupProps : RProps { var markup: VisionOfMarkup? } -val Markup = functionalComponent("Markup") { props -> +val Markup = functionComponent("Markup") { props -> val elementRef = useRef(null) useEffect(props.markup, elementRef) { diff --git a/demo/js-playground/src/main/kotlin/plotlyComponent.kt b/demo/js-playground/src/main/kotlin/plotlyComponent.kt index 22f63ac8..fa73f298 100644 --- a/demo/js-playground/src/main/kotlin/plotlyComponent.kt +++ b/demo/js-playground/src/main/kotlin/plotlyComponent.kt @@ -14,7 +14,7 @@ external interface PlotlyProps : RProps { } -val Plotly = functionalComponent("Plotly") { props -> +val Plotly = functionComponent("Plotly") { props -> val elementRef = useRef(null) useEffect(props.plot, elementRef) { diff --git a/demo/muon-monitor/src/jsMain/kotlin/ru/mipt/npm/muon/monitor/MMAppComponent.kt b/demo/muon-monitor/src/jsMain/kotlin/ru/mipt/npm/muon/monitor/MMAppComponent.kt index 1a7fe071..f4ea0206 100644 --- a/demo/muon-monitor/src/jsMain/kotlin/ru/mipt/npm/muon/monitor/MMAppComponent.kt +++ b/demo/muon-monitor/src/jsMain/kotlin/ru/mipt/npm/muon/monitor/MMAppComponent.kt @@ -7,10 +7,13 @@ import kotlinx.coroutines.DelicateCoroutinesApi import kotlinx.coroutines.launch import kotlinx.css.* import kotlinx.html.js.onClickFunction -import react.* +import react.RProps import react.dom.attrs import react.dom.button import react.dom.p +import react.functionComponent +import react.useMemo +import react.useState import space.kscience.dataforge.context.Context import space.kscience.dataforge.names.Name import space.kscience.visionforge.react.flexColumn @@ -34,7 +37,7 @@ external interface MMAppProps : RProps { @OptIn(DelicateCoroutinesApi::class) @JsExport -val MMApp = functionalComponent("Muon monitor") { props -> +val MMApp = functionComponent("Muon monitor") { props -> val mmOptions = useMemo { Canvas3DOptions { diff --git a/demo/playground/src/jvmMain/kotlin/rootParser.kt b/demo/playground/src/jvmMain/kotlin/rootParser.kt index 16e1b3fe..80555bc5 100644 --- a/demo/playground/src/jvmMain/kotlin/rootParser.kt +++ b/demo/playground/src/jvmMain/kotlin/rootParser.kt @@ -10,6 +10,7 @@ import space.kscience.dataforge.meta.isLeaf import space.kscience.dataforge.values.string import space.kscience.visionforge.solid.Solids import java.nio.file.Paths +import java.util.zip.ZipInputStream import kotlin.io.path.writeText @@ -25,8 +26,11 @@ fun main() { plugin(Solids) } - val string = TGeoManager::class.java.getResourceAsStream("/root/BM@N.root.json")!! - .readAllBytes().decodeToString() + + val string = ZipInputStream(TGeoManager::class.java.getResourceAsStream("/root/BM@N_geometry.zip")!!).use { + it.nextEntry + it.readAllBytes().decodeToString() + } val geo = DGeoManager.parse(string) @@ -45,12 +49,11 @@ fun main() { context.makeVisionFile { vision("canvas") { solid - } + } } } - /* SolidGroup { set( "Coil", diff --git a/demo/playground/src/jvmMain/resources/root/BM@N.root.json b/demo/playground/src/jvmMain/resources/root/BM@N.root.json deleted file mode 100644 index 9058d156..00000000 --- a/demo/playground/src/jvmMain/resources/root/BM@N.root.json +++ /dev/null @@ -1,26920 +0,0 @@ -{ - "_typename" : "TGeoManager", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "FAIRGeom", - "fTitle" : "FAIR geometry", - "fNNodes" : 413815, - "fVisDensity" : 0, - "fExplodedView" : 0, - "fVisOption" : 1, - "fVisLevel" : 3, - "fNsegments" : 20, - "fNtracks" : 0, - "fMaxVisNodes" : 10000, - "fNpdg" : 257, - "fPdgId" : [1, -1, 2, -2, 3, -3, 4, -4, 5, -5, 6, -6, 7, -7, 8, -8, 11, -11, 12, -12, 13, -13, 14, -14, 15, -15, 16, -16, 17, -17, 18, -18, 21, 22, 23, 24, -24, 25, 28, 29, 32, 33, 34, -34, 35, 36, 37, -37, 38, 39, -39, 40, -40, 51, 52, -52, 53, 54, 55, -55, 56, 61, -61, 62, -62, 63, -63, 64, -64, 65, -65, 66, -66, 81, 82, -82, 83, 84, -84, 85, -85, 91, 92, 93, 94, 95, 96, 97, 98, 99, 110, 111, 113, 115, 130, 210, -210, 211, -211, 213, -213, 215, -215, 220, 221, 223, 225, 310, 311, -311, 313, -313, 315, -315, 321, -321, 323, -323, 325, -325, 330, 331, 333, 335, 411, -411, 413, -413, 415, -415, 421, -421, 423, -423, 425, -425, 431, -431, 433, -433, 435, -435, 440, 441, 443, 445, 511, -511, 513, -513, 515, -515, 521, -521, 523, -523, 525, -525, 531, -531, 533, -533, 535, -535, 541, -541, 543, -543, 545, -545, 551, 553, 555, 1103, -1103, 1114, -1114, 2101, -2101, 2103, -2103, 2110, -2110, 2112, -2112, 2114, -2114, 2203, -2203, 2210, -2210, 2212, -2212, 2214, -2214, 2224, -2224, 3101, -3101, 3103, -3103, 3112, -3112, 3114, -3114, 3122, -3122, 3201, -3201, 3203, -3203, 3212, -3212, 3214, -3214, 3222, -3222, 3224, -3224, 3303, -3303, 3312, -3312, 3314, -3314, 3322, -3322, 3324, -3324, 3334, -3334, 4101, -4101, 4103, -4103, 4112, -4112, 4114, -4114, 4122, -4122, 4132, -4132, 4201, -4201, 4203, -4203, 4212, -4212, 4214, -4214, 4222, -4222, 4224, -4224, 4232, -4232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "fStreamVoxels" : false, - "fPhiCut" : false, - "fTimeCut" : false, - "fMatrices" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoIdentity", - "fUniqueID" : 1, - "fBits" : 52428800, - "fName" : "Identity", - "fTitle" : "" - }, { - "_typename" : "TGeoHMatrix", - "fUniqueID" : 2, - "fBits" : 52428800, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 0], - "fRotationMatrix" : [1, 0, 0, 0, 1, 0, 0, 0, 1], - "fScale" : [1, 1, 1] - }, { - "_typename" : "TGeoIdentity", - "fUniqueID" : 3, - "fBits" : 52428800, - "fName" : "Identity", - "fTitle" : "" - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 4, - "fBits" : 52559872, - "fName" : "t5", - "fTitle" : "", - "fTranslation" : [0, -7.13984375, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 5, - "fBits" : 52559872, - "fName" : "t9", - "fTitle" : "", - "fTranslation" : [0, -4.7421875, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 6, - "fBits" : 52559872, - "fName" : "GlassLayer1PosTOF2_trans", - "fTitle" : "", - "fTranslation" : [0, 0, -0.475] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 7, - "fBits" : 52559872, - "fName" : "GlassLayer2PosTOF2_trans", - "fTitle" : "", - "fTranslation" : [0, 0, 0.219] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 8, - "fBits" : 52559872, - "fName" : "G10LayerPosTOF2_trans", - "fTitle" : "", - "fTranslation" : [0, 0, 0.642] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 9, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [45, 0, 1052.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 10, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [7.2, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 11, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [3.65, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 12, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -50.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 13, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 50.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 14, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -50.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 15, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 50.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 16, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -49.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 17, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [7.2, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 18, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -48.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 19, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [7.2, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 20, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -49.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 21, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [3.55, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 22, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -48.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 23, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -47.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 24, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -47] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 25, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -47.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 26, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -47] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 27, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -46.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 28, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -45.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 29, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -46.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 30, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -45.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 31, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -44.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 32, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -44] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 33, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -44.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 34, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -44] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 35, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -43.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 36, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -42.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 37, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -43.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 38, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -42.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 39, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -41.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 40, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -41] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 41, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -41.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 42, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -41] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 43, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -40.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 44, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -39.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 45, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -40.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 46, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -39.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 47, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -38.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 48, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -38] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 49, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -38.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 50, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -38] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 51, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -37.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 52, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -36.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 53, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -37.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 54, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -36.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 55, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -35.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 56, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -35] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 57, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -35.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 58, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -35] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 59, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -34.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 60, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -33.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 61, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -34.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 62, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -33.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 63, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -32.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 64, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -32] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 65, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -32.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 66, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -32] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 67, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -31.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 68, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -30.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 69, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -31.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 70, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -30.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 71, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -29.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 72, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -29] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 73, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -29.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 74, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -29] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 75, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -28.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 76, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -27.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 77, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -28.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 78, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -27.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 79, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -26.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 80, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -26] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 81, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -26.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 82, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -26] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 83, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -25.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 84, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -24.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 85, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -25.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 86, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -24.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 87, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -23.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 88, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -23] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 89, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -23.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 90, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -23] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 91, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -22.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 92, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -21.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 93, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -22.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 94, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -21.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 95, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -20.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 96, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -20] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 97, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -20.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 98, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -20] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 99, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -19.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 100, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -18.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 101, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -19.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 102, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -18.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 103, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -17.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 104, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -17] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 105, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -17.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 106, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -17] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 107, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -16.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 108, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -15.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 109, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -16.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 110, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -15.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 111, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -14.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 112, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -14] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 113, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -14.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 114, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -14] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 115, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -13.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 116, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -12.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 117, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -13.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 118, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -12.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 119, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -11.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 120, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -11] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 121, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -11.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 122, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -11] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 123, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -10.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 124, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -9.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 125, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -10.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 126, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -9.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 127, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -8.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 128, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -8] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 129, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -8.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 130, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -8] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 131, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -7.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 132, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -6.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 133, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -7.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 134, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -6.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 135, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -5.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 136, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 137, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -5.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 138, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 139, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -4.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 140, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -3.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 141, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -4.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 142, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -3.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 143, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -2.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 144, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -2] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 145, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -2.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 146, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -2] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 147, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -1.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 148, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -0.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 149, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -1.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 150, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -0.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 151, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 0.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 152, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 1] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 153, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 0.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 154, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 1] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 155, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 1.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 156, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 2.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 157, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 1.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 158, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 2.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 159, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 3.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 160, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 4] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 161, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 3.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 162, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 4] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 163, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 4.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 164, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 5.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 165, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 4.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 166, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 5.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 167, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 6.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 168, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 7] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 169, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 6.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 170, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 7] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 171, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 7.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 172, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 8.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 173, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 7.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 174, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 8.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 175, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 9.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 176, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 10] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 177, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 9.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 178, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 10] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 179, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 10.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 180, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 11.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 181, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 10.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 182, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 11.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 183, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 12.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 184, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 13] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 185, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 12.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 186, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 13] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 187, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 13.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 188, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 14.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 189, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 13.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 190, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 14.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 191, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 15.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 192, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 16] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 193, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 15.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 194, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 16] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 195, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 16.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 196, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 17.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 197, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 16.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 198, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 17.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 199, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 18.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 200, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 19] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 201, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 18.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 202, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 19] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 203, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 19.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 204, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 20.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 205, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 19.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 206, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 20.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 207, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 21.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 208, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 22] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 209, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 21.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 210, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 22] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 211, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 22.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 212, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 23.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 213, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 22.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 214, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 23.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 215, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 24.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 216, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 217, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 24.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 218, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 219, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 25.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 220, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 26.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 221, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 25.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 222, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 26.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 223, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 27.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 224, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 28] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 225, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 27.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 226, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 28] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 227, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 28.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 228, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 29.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 229, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 28.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 230, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 29.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 231, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 30.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 232, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 31] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 233, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 30.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 234, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 31] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 235, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 31.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 236, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 32.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 237, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 31.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 238, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 32.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 239, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 33.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 240, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 34] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 241, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 33.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 242, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 34] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 243, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 34.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 244, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 35.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 245, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 34.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 246, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 35.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 247, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 36.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 248, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 37] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 249, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 36.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 250, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 37] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 251, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 37.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 252, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 38.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 253, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 37.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 254, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 38.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 255, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 39.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 256, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 40] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 257, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 39.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 258, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 40] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 259, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 40.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 260, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 41.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 261, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 40.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 262, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 41.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 263, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 42.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 264, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 43] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 265, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 42.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 266, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 43] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 267, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 43.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 268, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 44.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 269, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 43.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 270, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 44.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 271, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 45.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 272, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 46] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 273, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 45.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 274, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 46] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 275, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 46.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 276, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 47.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 277, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 46.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 278, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 47.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 279, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 48.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 280, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 49] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 281, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 48.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 282, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 49] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 283, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-75, -45, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 284, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-60, -45, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 285, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-45, -45, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 286, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-30, -45, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 287, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-15, -45, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 288, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, -45, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 289, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [15, -45, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 290, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [30, -45, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 291, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [45, -45, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 292, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [60, -45, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 293, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [75, -45, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 294, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-75, -30, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 295, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-60, -30, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 296, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-45, -30, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 297, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-30, -30, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 298, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-15, -30, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 299, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, -30, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 300, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [15, -30, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 301, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [30, -30, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 302, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [45, -30, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 303, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [60, -30, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 304, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [75, -30, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 305, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-75, -15, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 306, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-60, -15, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 307, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-45, -15, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 308, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-30, -15, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 309, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-18.75, -18.75, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 310, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-11.25, -18.75, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 311, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-18.75, -11.25, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 312, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-11.25, -11.25, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 313, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-3.75, -18.75, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 314, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [3.75, -18.75, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 315, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-3.75, -11.25, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 316, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [3.75, -11.25, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 317, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [11.25, -18.75, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 318, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [18.75, -18.75, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 319, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [11.25, -11.25, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 320, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [18.75, -11.25, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 321, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [30, -15, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 322, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [45, -15, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 323, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [60, -15, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 324, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [75, -15, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 325, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-75, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 326, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-60, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 327, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-45, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 328, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-30, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 329, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-18.75, -3.75, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 330, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-11.25, -3.75, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 331, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-18.75, 3.75, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 332, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-11.25, 3.75, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 333, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-3.75, -3.75, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 334, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-3.75, 3.75, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 335, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [18.75, -3.75, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 336, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [18.75, 3.75, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 337, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [30, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 338, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [45, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 339, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [60, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 340, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [75, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 341, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-75, 15, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 342, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-60, 15, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 343, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-45, 15, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 344, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-30, 15, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 345, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-18.75, 11.25, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 346, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-11.25, 11.25, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 347, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-18.75, 18.75, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 348, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-11.25, 18.75, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 349, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-3.75, 11.25, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 350, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [3.75, 11.25, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 351, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-3.75, 18.75, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 352, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [3.75, 18.75, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 353, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [11.25, 11.25, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 354, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [18.75, 11.25, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 355, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [11.25, 18.75, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 356, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [18.75, 18.75, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 357, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [30, 15, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 358, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [45, 15, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 359, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [60, 15, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 360, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [75, 15, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 361, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-75, 30, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 362, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-60, 30, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 363, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-45, 30, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 364, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-30, 30, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 365, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-15, 30, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 366, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 30, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 367, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [15, 30, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 368, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [30, 30, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 369, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [45, 30, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 370, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [60, 30, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 371, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [75, 30, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 372, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-75, 45, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 373, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-60, 45, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 374, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-45, 45, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 375, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-30, 45, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 376, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-15, 45, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 377, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 45, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 378, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [15, 45, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 379, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [30, 45, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 380, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [45, 45, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 381, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [60, 45, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 382, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [75, 45, 0] - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 383, - "fBits" : 52559872, - "fName" : "t383", - "fTitle" : "", - "fTranslation" : [35.5, 0, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 384, - "fBits" : 52559872, - "fName" : "t383", - "fTitle" : "", - "fTranslation" : [-35.5, 0, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 385, - "fBits" : 52559872, - "fName" : "t383", - "fTitle" : "", - "fTranslation" : [0, 22.375, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 386, - "fBits" : 52559872, - "fName" : "t383", - "fTitle" : "", - "fTranslation" : [0, -22.375, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 387, - "fBits" : 52559872, - "fName" : "t383", - "fTitle" : "", - "fTranslation" : [0, 0, 0.45], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 388, - "fBits" : 52559872, - "fName" : "t383", - "fTitle" : "", - "fTranslation" : [0, 0, 0.45], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 389, - "fBits" : 52559872, - "fName" : "t389", - "fTitle" : "", - "fTranslation" : [35.5, 0, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 390, - "fBits" : 52559872, - "fName" : "t389", - "fTitle" : "", - "fTranslation" : [-35.5, 0, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 391, - "fBits" : 52559872, - "fName" : "t389", - "fTitle" : "", - "fTranslation" : [0, 22.375, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 392, - "fBits" : 52559872, - "fName" : "t389", - "fTitle" : "", - "fTranslation" : [0, -22.375, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 393, - "fBits" : 52559872, - "fName" : "t389", - "fTitle" : "", - "fTranslation" : [0, 0, 0.45], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 394, - "fBits" : 52559872, - "fName" : "t389", - "fTitle" : "", - "fTranslation" : [0, 0, 0.45], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 395, - "fBits" : 52559872, - "fName" : "t395", - "fTitle" : "", - "fTranslation" : [35.5, 0, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 396, - "fBits" : 52559872, - "fName" : "t395", - "fTitle" : "", - "fTranslation" : [-35.5, 0, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 397, - "fBits" : 52559872, - "fName" : "t395", - "fTitle" : "", - "fTranslation" : [0, 22.375, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 398, - "fBits" : 52559872, - "fName" : "t395", - "fTitle" : "", - "fTranslation" : [0, -22.375, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 399, - "fBits" : 52559872, - "fName" : "t395", - "fTitle" : "", - "fTranslation" : [0, 0, 0.45], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 400, - "fBits" : 52559872, - "fName" : "t395", - "fTitle" : "", - "fTranslation" : [0, 0, 0.45], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 401, - "fBits" : 52559872, - "fName" : "t401", - "fTitle" : "", - "fTranslation" : [35.5, 0, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 402, - "fBits" : 52559872, - "fName" : "t401", - "fTitle" : "", - "fTranslation" : [-35.5, 0, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 403, - "fBits" : 52559872, - "fName" : "t401", - "fTitle" : "", - "fTranslation" : [0, 22.375, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 404, - "fBits" : 52559872, - "fName" : "t401", - "fTitle" : "", - "fTranslation" : [0, -22.375, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 405, - "fBits" : 52559872, - "fName" : "t405", - "fTitle" : "", - "fTranslation" : [35.5, 0, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 406, - "fBits" : 52559872, - "fName" : "t405", - "fTitle" : "", - "fTranslation" : [-35.5, 0, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 407, - "fBits" : 52559872, - "fName" : "t405", - "fTitle" : "", - "fTranslation" : [0, 22.375, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 408, - "fBits" : 52559872, - "fName" : "t405", - "fTitle" : "", - "fTranslation" : [0, -22.375, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 409, - "fBits" : 52559872, - "fName" : "t401", - "fTitle" : "", - "fTranslation" : [27.7, 0, 0.55], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 410, - "fBits" : 52559872, - "fName" : "t401", - "fTitle" : "", - "fTranslation" : [-34.7, 0.2, 2.95], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 411, - "fBits" : 52559872, - "fName" : "t401", - "fTitle" : "", - "fTranslation" : [27.7, 0, 0.55], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 412, - "fBits" : 52559872, - "fName" : "t405", - "fTitle" : "", - "fTranslation" : [-34.7, 0.2, 2.95], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 413, - "fBits" : 52559872, - "fName" : "t413", - "fTitle" : "", - "fTranslation" : [43.3, 0, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 414, - "fBits" : 52559872, - "fName" : "t413", - "fTitle" : "", - "fTranslation" : [0, 24.375, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 415, - "fBits" : 52559872, - "fName" : "t413", - "fTitle" : "", - "fTranslation" : [2.875, -24.375, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 416, - "fBits" : 52559872, - "fName" : "t416", - "fTitle" : "", - "fTranslation" : [43.3, 0, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 417, - "fBits" : 52559872, - "fName" : "t416", - "fTitle" : "", - "fTranslation" : [0, 24.375, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 418, - "fBits" : 52559872, - "fName" : "t416", - "fTitle" : "", - "fTranslation" : [2.875, -24.375, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 419, - "fBits" : 52559872, - "fName" : "t413", - "fTitle" : "", - "fTranslation" : [40.8, 0, 0.45], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 420, - "fBits" : 62259200, - "fName" : "c413", - "fTitle" : "", - "fTranslation" : [-40.8, 0, 0.45], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 53739520, - "fName" : "", - "fTitle" : "", - "fRotationMatrix" : [-1, -0, -0, 0, 1, 0, 0, 0, 1] - } - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 421, - "fBits" : 52559872, - "fName" : "t413", - "fTitle" : "", - "fTranslation" : [40.8, 0, 0.45], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 422, - "fBits" : 62259200, - "fName" : "c416", - "fTitle" : "", - "fTranslation" : [-40.8, 0, 0.45], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 53739520, - "fName" : "", - "fTitle" : "", - "fRotationMatrix" : [-1, -0, -0, 0, 1, 0, 0, 0, 1] - } - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 423, - "fBits" : 52559872, - "fName" : "t423", - "fTitle" : "", - "fTranslation" : [43.3, 0, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 424, - "fBits" : 52559872, - "fName" : "t423", - "fTitle" : "", - "fTranslation" : [0, 24.375, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 425, - "fBits" : 52559872, - "fName" : "t423", - "fTitle" : "", - "fTranslation" : [2.875, -24.375, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 426, - "fBits" : 52559872, - "fName" : "t426", - "fTitle" : "", - "fTranslation" : [43.3, 0, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 427, - "fBits" : 52559872, - "fName" : "t426", - "fTitle" : "", - "fTranslation" : [0, 24.375, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 428, - "fBits" : 52559872, - "fName" : "t426", - "fTitle" : "", - "fTranslation" : [2.875, -24.375, 0], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 429, - "fBits" : 52559872, - "fName" : "t423", - "fTitle" : "", - "fTranslation" : [40.8, 0, 0.45], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 430, - "fBits" : 62259200, - "fName" : "c423", - "fTitle" : "", - "fTranslation" : [-40.8, 0, 0.45], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 53739520, - "fName" : "", - "fTitle" : "", - "fRotationMatrix" : [-1, -0, -0, 0, 1, 0, 0, 0, 1] - } - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 431, - "fBits" : 52559872, - "fName" : "t423", - "fTitle" : "", - "fTranslation" : [40.8, 0, 0.45], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 432, - "fBits" : 62259200, - "fName" : "c426", - "fTitle" : "", - "fTranslation" : [-40.8, 0, 0.45], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 53739520, - "fName" : "", - "fTitle" : "", - "fRotationMatrix" : [-1, -0, -0, 0, 1, 0, 0, 0, 1] - } - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 433, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [-29.375, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 434, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [-28.125, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 435, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [-26.875, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 436, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [-25.625, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 437, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [-24.375, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 438, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [-23.125, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 439, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [-21.875, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 440, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [-20.625, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 441, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [-19.375, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 442, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [-18.125, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 443, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [-16.875, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 444, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [-15.625, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 445, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [-14.375, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 446, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [-13.125, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 447, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [-11.875, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 448, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [-10.625, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 449, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [-9.375, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 450, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [-8.125, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 451, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [-6.875, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 452, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [-5.625, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 453, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [-4.375, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 454, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [-3.125, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 455, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [-1.875, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 456, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [-0.625, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 457, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [0.625, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 458, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [1.875, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 459, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [3.125, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 460, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [4.375, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 461, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [5.625, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 462, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [6.875, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 463, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [8.125, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 464, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [9.375, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 465, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [10.625, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 466, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [11.875, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 467, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [13.125, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 468, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [14.375, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 469, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [15.625, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 470, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [16.875, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 471, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [18.125, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 472, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [19.375, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 473, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [20.625, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 474, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [21.875, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 475, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [23.125, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 476, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [24.375, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 477, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [25.625, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 478, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [26.875, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 479, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [28.125, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 480, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [29.375, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 481, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [0, 0, -0.304499998688698] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 482, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [0, 0, 0.304499998688698] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 483, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [0, 0, -1.34000000357628] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 484, - "fBits" : 52559872, - "fName" : "t433", - "fTitle" : "", - "fTranslation" : [0, 0, 1.34000000357628] - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 485, - "fBits" : 52559872, - "fName" : "t485", - "fTitle" : "", - "fTranslation" : [0, 0, -11.59375], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 486, - "fBits" : 52559872, - "fName" : "t485", - "fTitle" : "", - "fTranslation" : [0, 0, -8.28125], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 487, - "fBits" : 52559872, - "fName" : "t485", - "fTitle" : "", - "fTranslation" : [0, 0, -4.96875], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 488, - "fBits" : 52559872, - "fName" : "t485", - "fTitle" : "", - "fTranslation" : [0, 0, -1.65625], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 489, - "fBits" : 52559872, - "fName" : "t485", - "fTitle" : "", - "fTranslation" : [0, 0, 1.65625], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 490, - "fBits" : 52559872, - "fName" : "t485", - "fTitle" : "", - "fTranslation" : [0, 0, 4.96875], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 491, - "fBits" : 52559872, - "fName" : "t485", - "fTitle" : "", - "fTranslation" : [0, 0, 8.28125], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 492, - "fBits" : 52559872, - "fName" : "t485", - "fTitle" : "", - "fTranslation" : [0, 0, 11.59375], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 493, - "fBits" : 52559872, - "fName" : "t493", - "fTitle" : "", - "fTranslation" : [0, 0, -2.50375], - "fRotation" : null - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 494, - "fBits" : 61210624, - "fName" : "c493", - "fTitle" : "", - "fTranslation" : [0, 0, -1.50225], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 52690944, - "fName" : "r0", - "fTitle" : "", - "fRotationMatrix" : [0.5, -0.866025403784439, 0, 0.866025403784439, 0.5, -0, 0, 0, 1] - } - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 495, - "fBits" : 61210624, - "fName" : "c493", - "fTitle" : "", - "fTranslation" : [0, 0, -0.50075], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 52690944, - "fName" : "r0", - "fTitle" : "", - "fRotationMatrix" : [-0.5, -0.866025403784439, 0, 0.866025403784439, -0.5, -0, 0, -0, 1] - } - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 496, - "fBits" : 61210624, - "fName" : "c493", - "fTitle" : "", - "fTranslation" : [0, 0, 0.50075], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 52690944, - "fName" : "r0", - "fTitle" : "", - "fRotationMatrix" : [-1, -1.22464679914735e-16, 0, 1.22464679914735e-16, -1, -0, 0, -0, 1] - } - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 497, - "fBits" : 61210624, - "fName" : "c493", - "fTitle" : "", - "fTranslation" : [0, 0, 1.50225], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 52690944, - "fName" : "r0", - "fTitle" : "", - "fRotationMatrix" : [-0.5, 0.866025403784438, 0, -0.866025403784438, -0.5, -0, -0, -0, 1] - } - }, { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 498, - "fBits" : 61210624, - "fName" : "c493", - "fTitle" : "", - "fTranslation" : [0, 0, 2.50375], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 52690944, - "fName" : "r0", - "fTitle" : "", - "fRotationMatrix" : [0.5, 0.866025403784439, 0, -0.866025403784439, 0.5, -0, -0, 0, 1] - } - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 499, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-48, 0, 800] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 500, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [42, 54, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 501, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -19.9] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 502, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -19.71] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 503, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -0.075] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 504, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [4, 4, 0.015] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 505, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [4, 0, 0.015] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 506, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [4, -4, 0.015] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 507, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 4, 0.015] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 508, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 0.015] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 509, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, -4, 0.015] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 510, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-4, 4, 0.015] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 511, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-4, 0, 0.015] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 512, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-4, -4, 0.015] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 513, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -19.53] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 514, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -19.35] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 515, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -19.17] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 516, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -18.99] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 517, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -18.81] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 518, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -18.63] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 519, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -18.45] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 520, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -18.27] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 521, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -18.09] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 522, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -17.91] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 523, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -17.73] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 524, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -17.55] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 525, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -17.37] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 526, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -17.19] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 527, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -17.01] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 528, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -16.83] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 529, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -16.65] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 530, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -16.47] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 531, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -16.29] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 532, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -16.11] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 533, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -15.93] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 534, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -15.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 535, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -15.57] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 536, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -15.39] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 537, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -15.21] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 538, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -15.03] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 539, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -14.85] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 540, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -14.67] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 541, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -14.49] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 542, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -14.31] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 543, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -14.13] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 544, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -13.95] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 545, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -13.77] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 546, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -13.59] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 547, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -13.41] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 548, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -13.23] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 549, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -13.05] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 550, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -12.87] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 551, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -12.69] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 552, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -12.51] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 553, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -12.33] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 554, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -12.15] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 555, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -11.97] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 556, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -11.79] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 557, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -11.61] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 558, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -11.43] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 559, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -11.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 560, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -11.07] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 561, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -10.89] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 562, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -10.71] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 563, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -10.53] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 564, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -10.35] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 565, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -10.17] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 566, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -9.99] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 567, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -9.81] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 568, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -9.63] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 569, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -9.45] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 570, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -9.27] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 571, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -9.09] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 572, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -8.91] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 573, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -8.73] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 574, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -8.55] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 575, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -8.37] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 576, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -8.19] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 577, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -8.01] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 578, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -7.83] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 579, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -7.65] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 580, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -7.47] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 581, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -7.29] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 582, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -7.11] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 583, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -6.93] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 584, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -6.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 585, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -6.57] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 586, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -6.39] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 587, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -6.21] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 588, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -6.03] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 589, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -5.85] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 590, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -5.67] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 591, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -5.49] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 592, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -5.31] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 593, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -5.13] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 594, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -4.95] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 595, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -4.77] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 596, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -4.59] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 597, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -4.41] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 598, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -4.23] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 599, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -4.05] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 600, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -3.87] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 601, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -3.69] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 602, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -3.51] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 603, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -3.33] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 604, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -3.15] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 605, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -2.97] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 606, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -2.79] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 607, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -2.61] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 608, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -2.43] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 609, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -2.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 610, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -2.07] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 611, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -1.89] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 612, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -1.71] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 613, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -1.53] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 614, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -1.35] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 615, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -1.17] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 616, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -0.99] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 617, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -0.81] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 618, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -0.63] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 619, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -0.45] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 620, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -0.27] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 621, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, -0.09] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 622, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 0.09] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 623, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 0.27] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 624, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 0.45] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 625, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 0.63] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 626, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 0.81] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 627, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 0.99] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 628, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 1.17] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 629, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 1.35] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 630, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 1.53] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 631, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 1.71] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 632, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 1.89] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 633, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 2.07] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 634, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 2.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 635, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 2.43] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 636, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 2.61] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 637, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 2.79] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 638, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 2.97] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 639, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 3.15] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 640, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 3.33] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 641, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 3.51] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 642, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 3.69] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 643, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 3.87] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 644, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 4.05] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 645, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 4.23] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 646, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 4.41] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 647, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 4.59] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 648, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 4.77] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 649, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 4.95] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 650, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 5.13] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 651, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 5.31] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 652, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 5.49] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 653, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 5.67] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 654, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 5.85] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 655, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 6.03] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 656, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 6.21] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 657, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 6.39] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 658, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 6.57] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 659, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 6.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 660, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 6.93] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 661, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 7.11] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 662, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 7.29] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 663, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 7.47] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 664, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 7.65] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 665, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 7.83] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 666, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 8.01] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 667, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 8.19] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 668, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 8.37] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 669, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 8.55] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 670, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 8.73] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 671, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 8.91] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 672, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 9.09] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 673, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 9.27] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 674, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 9.45] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 675, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 9.63] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 676, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 9.81] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 677, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 9.99] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 678, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 10.17] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 679, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 10.35] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 680, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 10.53] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 681, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 10.71] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 682, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 10.89] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 683, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 11.07] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 684, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 11.25] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 685, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 11.43] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 686, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 11.61] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 687, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 11.79] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 688, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 11.97] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 689, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 12.15] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 690, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 12.33] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 691, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 12.51] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 692, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 12.69] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 693, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 12.87] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 694, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 13.05] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 695, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 13.23] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 696, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 13.41] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 697, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 13.59] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 698, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 13.77] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 699, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 13.95] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 700, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 14.13] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 701, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 14.31] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 702, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 14.49] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 703, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 14.67] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 704, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 14.85] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 705, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 15.03] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 706, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 15.21] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 707, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 15.39] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 708, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 15.57] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 709, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 15.75] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 710, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 15.93] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 711, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 16.11] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 712, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 16.29] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 713, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 16.47] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 714, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 16.65] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 715, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 16.83] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 716, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 17.01] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 717, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 17.19] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 718, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 17.37] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 719, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 17.55] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 720, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 17.73] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 721, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 17.91] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 722, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 18.09] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 723, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 18.27] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 724, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 18.45] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 725, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 18.63] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 726, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 18.81] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 727, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 18.99] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 728, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 19.17] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 729, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 19.35] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 730, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 19.53] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 731, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 19.71] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 732, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [42, 42, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 733, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [42, 30, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 734, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [42, 18, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 735, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [42, 6, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 736, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [42, -6, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 737, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [42, -18, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 738, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [42, -30, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 739, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [42, -42, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 740, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [42, -54, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 741, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [30, 54, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 742, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [30, 42, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 743, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [30, 30, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 744, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [30, 18, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 745, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [30, 6, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 746, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [30, -6, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 747, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [30, -18, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 748, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [30, -30, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 749, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [30, -42, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 750, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [30, -54, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 751, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [18, 54, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 752, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [18, 42, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 753, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [18, 30, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 754, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [18, 18, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 755, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [18, 6, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 756, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [18, -6, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 757, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [18, -18, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 758, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [18, -30, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 759, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [18, -42, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 760, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [18, -54, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 761, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [6, 54, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 762, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [6, 42, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 763, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [6, 30, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 764, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [6, 18, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 765, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [6, 6, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 766, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [6, -6, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 767, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [6, -18, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 768, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [6, -30, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 769, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [6, -42, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 770, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [6, -54, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 771, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-6, 54, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 772, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-6, 42, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 773, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-6, 30, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 774, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-6, 18, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 775, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-6, 6, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 776, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-6, -6, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 777, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-6, -18, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 778, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-6, -30, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 779, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-6, -42, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 780, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-6, -54, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 781, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-18, 54, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 782, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-18, 42, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 783, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-18, 30, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 784, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-18, 18, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 785, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-18, 6, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 786, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-18, -6, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 787, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-18, -18, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 788, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-18, -30, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 789, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-18, -42, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 790, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-18, -54, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 791, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-30, 54, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 792, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-30, 42, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 793, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-30, 30, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 794, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-30, 18, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 795, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-30, 6, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 796, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-30, -6, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 797, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-30, -18, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 798, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-30, -30, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 799, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-30, -42, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 800, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-30, -54, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 801, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-42, 54, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 802, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-42, 42, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 803, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-42, 30, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 804, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-42, 18, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 805, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-42, 6, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 806, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-42, -6, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 807, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-42, -18, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 808, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-42, -30, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 809, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-42, -42, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 810, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [-42, -54, -7.5] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 811, - "fBits" : 52559872, - "fName" : "", - "fTitle" : "", - "fTranslation" : [108, 0, 800] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t812", - "fTitle" : "", - "fTranslation" : [0, 3.15175, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t812", - "fTitle" : "", - "fTranslation" : [0, -3.15175, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t814", - "fTitle" : "", - "fTranslation" : [0, 3.15175, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t814", - "fTitle" : "", - "fTranslation" : [0, -3.15175, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t816", - "fTitle" : "", - "fTranslation" : [0, 3.15175, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t816", - "fTitle" : "", - "fTranslation" : [0, -3.15175, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t818", - "fTitle" : "", - "fTranslation" : [0, 3.15175, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t818", - "fTitle" : "", - "fTranslation" : [0, -3.15175, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t820", - "fTitle" : "", - "fTranslation" : [0, 3.15175, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t820", - "fTitle" : "", - "fTranslation" : [0, -3.15175, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t822", - "fTitle" : "", - "fTranslation" : [0, 3.15175, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t822", - "fTitle" : "", - "fTranslation" : [0, -3.15175, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t824", - "fTitle" : "", - "fTranslation" : [0, 3.15175, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t824", - "fTitle" : "", - "fTranslation" : [0, -3.15175, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t826", - "fTitle" : "", - "fTranslation" : [0, 3.15175, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t826", - "fTitle" : "", - "fTranslation" : [0, -3.15175, 0] - }, { - "_typename" : "TGeoIdentity", - "fUniqueID" : 0, - "fBits" : 52428800, - "fName" : "Identity", - "fTitle" : "" - }, { - "_typename" : "TGeoIdentity", - "fUniqueID" : 0, - "fBits" : 52428800, - "fName" : "Identity", - "fTitle" : "" - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52428800, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 0] - }, { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52428800, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 0] - }, { - "_typename" : "TGeoIdentity", - "fUniqueID" : 0, - "fBits" : 52428800, - "fName" : "Identity", - "fTitle" : "" - }, { - "_typename" : "TGeoIdentity", - "fUniqueID" : 0, - "fBits" : 52428800, - "fName" : "Identity", - "fTitle" : "" - }, { - "_typename" : "TGeoIdentity", - "fUniqueID" : 0, - "fBits" : 52428800, - "fName" : "Identity", - "fTitle" : "" - }, { - "_typename" : "TGeoHMatrix", - "fUniqueID" : 1, - "fBits" : 52428800, - "fName" : "Identity", - "fTitle" : "", - "fTranslation" : [0, 0, 0], - "fRotationMatrix" : [1, 0, 0, 0, 1, 0, 0, 0, 1], - "fScale" : [1, 1, 1] - }, { - "_typename" : "TGeoHMatrix", - "fUniqueID" : 0, - "fBits" : 52428800, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 0], - "fRotationMatrix" : [1, 0, 0, 0, 1, 0, 0, 0, 1], - "fScale" : [1, 1, 1] - }] - }, - "fShapes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoBBox", - "fUniqueID" : 1, - "fBits" : 50331648, - "fName" : "cave", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 2000, - "fDY" : 2000, - "fDZ" : 2000, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 2, - "fBits" : 50331648, - "fName" : "CoilTS", - "fTitle" : "CoilCornerS:combitran_CoilCorner1+CoilCornerS:combitran_CoilCorner2+CoilCornerS:combitran_CoilCorner3+CoilCornerS:combitran_CoilCorner4+CoilShortSideS:tran_CoilShortSide1+CoilShortSideS:tran_CoilShortSide2+CoilLongSideS:tran_CoilLongSide1+CoilLongSideS:tran_CoilLongSide2", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 214.6, - "fDY" : 25, - "fDZ" : 257.1, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoUnion", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 3, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "CoilCornerS:combitran_CoilCorner1+CoilCornerS:combitran_CoilCorner2+CoilCornerS:combitran_CoilCorner3+CoilCornerS:combitran_CoilCorner4+CoilShortSideS:tran_CoilShortSide1+CoilShortSideS:tran_CoilShortSide2+CoilLongSideS:tran_CoilLongSide1", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 214.6, - "fDY" : 25, - "fDZ" : 257.1, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoUnion", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 4, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "CoilCornerS:combitran_CoilCorner1+CoilCornerS:combitran_CoilCorner2+CoilCornerS:combitran_CoilCorner3+CoilCornerS:combitran_CoilCorner4+CoilShortSideS:tran_CoilShortSide1+CoilShortSideS:tran_CoilShortSide2", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 214.6, - "fDY" : 25, - "fDZ" : 257.1, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoUnion", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 5, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "CoilCornerS:combitran_CoilCorner1+CoilCornerS:combitran_CoilCorner2+CoilCornerS:combitran_CoilCorner3+CoilCornerS:combitran_CoilCorner4+CoilShortSideS:tran_CoilShortSide1", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 214.6, - "fDY" : 25, - "fDZ" : 257.1, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoUnion", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 6, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "CoilCornerS:combitran_CoilCorner1+CoilCornerS:combitran_CoilCorner2+CoilCornerS:combitran_CoilCorner3+CoilCornerS:combitran_CoilCorner4", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 214.6, - "fDY" : 25, - "fDZ" : 257.1, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoUnion", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 7, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "CoilCornerS:combitran_CoilCorner1+CoilCornerS:combitran_CoilCorner2+CoilCornerS:combitran_CoilCorner3", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 214.6, - "fDY" : 25, - "fDZ" : 257.1, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoUnion", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 8, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "CoilCornerS:combitran_CoilCorner1+CoilCornerS:combitran_CoilCorner2", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 214.6, - "fDY" : 25, - "fDZ" : 67.5, - "fOrigin" : [0, 0, -189.6], - "fNode" : { - "_typename" : "TGeoUnion", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : { - "_typename" : "TGeoTubeSeg", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "CoilCornerS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 25600, - "fDX" : 67.5, - "fDY" : 67.5, - "fDZ" : 25, - "fOrigin" : [67.5, 67.5, 0], - "fRmin" : 25, - "fRmax" : 135, - "fDz" : 25, - "fPhi1" : 0, - "fPhi2" : 90, - "fS1" : 0, - "fC1" : 1, - "fS2" : 1, - "fC2" : 6.12323399573677e-17, - "fSm" : 0.707106781186547, - "fCm" : 0.707106781186548, - "fCdfi" : 0.707106781186548 - }, - "fRight" : {"$ref":863}, - "fLeftMat" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 61210624, - "fName" : "combitran_CoilCorner1", - "fTitle" : "", - "fTranslation" : [79.6, 0, -122.1], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 52690944, - "fName" : "", - "fTitle" : "", - "fRotationMatrix" : [1, 0, 0, 0, 0, 1, 0, -1, 0] - } - }, - "fRightMat" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 61210624, - "fName" : "combitran_CoilCorner2", - "fTitle" : "", - "fTranslation" : [-79.6, 0, -122.1], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 52690944, - "fName" : "", - "fTitle" : "", - "fRotationMatrix" : [-1, 0, 0, 0, 0, -1, 0, -1, 0] - } - } - } - }, - "fRight" : {"$ref":863}, - "fLeftMat" : {"$ref":4}, - "fRightMat" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 61210624, - "fName" : "combitran_CoilCorner3", - "fTitle" : "", - "fTranslation" : [-79.6, 0, 122.1], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 52690944, - "fName" : "", - "fTitle" : "", - "fRotationMatrix" : [-1, 0, 0, 0, 0, 1, 0, 1, 0] - } - } - } - }, - "fRight" : {"$ref":863}, - "fLeftMat" : {"$ref":4}, - "fRightMat" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 61210624, - "fName" : "combitran_CoilCorner4", - "fTitle" : "", - "fTranslation" : [79.6, 0, 122.1], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 52690944, - "fName" : "", - "fTitle" : "", - "fRotationMatrix" : [1, 0, 0, 0, 0, -1, 0, 1, 0] - } - } - } - }, - "fRight" : { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "CoilShortSideS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 79.6, - "fDY" : 25, - "fDZ" : 55, - "fOrigin" : [0, 0, 0] - }, - "fLeftMat" : {"$ref":4}, - "fRightMat" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "tran_CoilShortSide1", - "fTitle" : "", - "fTranslation" : [0, 0, -202.1] - } - } - }, - "fRight" : {"$ref":872}, - "fLeftMat" : {"$ref":4}, - "fRightMat" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "tran_CoilShortSide2", - "fTitle" : "", - "fTranslation" : [0, 0, 202.1] - } - } - }, - "fRight" : { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "CoilLongSideS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 55, - "fDY" : 25, - "fDZ" : 122.1, - "fOrigin" : [0, 0, 0] - }, - "fLeftMat" : {"$ref":4}, - "fRightMat" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "tran_CoilLongSide1", - "fTitle" : "", - "fTranslation" : [-159.6, 0, 0] - } - } - }, - "fRight" : {"$ref":875}, - "fLeftMat" : {"$ref":4}, - "fRightMat" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "tran_CoilLongSide2", - "fTitle" : "", - "fTranslation" : [159.6, 0, 0] - } - } - }, {"$ref":851}, {"$ref":853}, {"$ref":855}, {"$ref":857}, {"$ref":859}, {"$ref":861}, { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 9, - "fBits" : 50331648, - "fName" : "YokeS", - "fTitle" : "YokeContainerS-InnerSpaceInYokeS", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 350, - "fDY" : 224, - "fDZ" : 130, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoSubtraction", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : { - "_typename" : "TGeoXtru", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "YokeContainerS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 134218752, - "fDX" : 350, - "fDY" : 224, - "fDZ" : 130, - "fOrigin" : [0, 0, 0], - "fNvert" : 8, - "fNz" : 2, - "fZcurrent" : 0, - "fX" : [-303.81197846483, -350, -350, -303.81197846483, 303.81197846483, 350, 350, 303.81197846483], - "fY" : [-224, -144, 144, 224, 224, 144, -144, -224], - "fZ" : [-130, 130], - "fScale" : [1, 1], - "fX0" : [0, 0], - "fY0" : [0, 0] - }, - "fRight" : { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "InnerSpaceInYokeS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 230, - "fDY" : 115, - "fDZ" : 130.005, - "fOrigin" : [0, 0, 0] - }, - "fLeftMat" : {"$ref":4}, - "fRightMat" : {"$ref":4} - } - }, { - "_typename" : "TGeoXtru", - "fUniqueID" : 10, - "fBits" : 50331648, - "fName" : "PoleS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 134218752, - "fDX" : 84, - "fDY" : 124.5, - "fDZ" : 30.75, - "fOrigin" : [0, 0, 0], - "fNvert" : 8, - "fNz" : 2, - "fZcurrent" : 0, - "fX" : [-54, -84, -84, -54, 54, 84, 84, 54], - "fY" : [-124.5, -94.5, 94.5, 124.5, 124.5, 94.5, -94.5, -124.5], - "fZ" : [-30.75, 30.75], - "fScale" : [1, 1], - "fX0" : [0, 0], - "fY0" : [0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 11, - "fBits" : 50331648, - "fName" : "TOF2GlassVolumeS0", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 8, - "fDY" : 17.575, - "fDZ" : 0.215, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 12, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 8, - "fDY" : 0.54921875, - "fDZ" : 0.132, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 13, - "fBits" : 50331648, - "fName" : "TOF2ActiveGasVolumeS0", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 8, - "fDY" : 17.575, - "fDZ" : 0.132, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 14, - "fBits" : 50331648, - "fName" : "TOF2G10VolumeS0", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 8, - "fDY" : 17.575, - "fDZ" : 0.208, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 15, - "fBits" : 50331648, - "fName" : "TOF2ChamberS0", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 9.501, - "fDY" : 19.076, - "fDZ" : 0.841, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 16, - "fBits" : 50331648, - "fName" : "TOF2GlassVolumeS1", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 28, - "fDY" : 15.175, - "fDZ" : 0.215, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 17, - "fBits" : 50331648, - "fName" : "TOF2ActiveGasVolumeS1", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 28, - "fDY" : 15.175, - "fDZ" : 0.132, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 18, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 28, - "fDY" : 0.9484375, - "fDZ" : 0.132, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 19, - "fBits" : 50331648, - "fName" : "TOF2G10VolumeS1", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 28, - "fDY" : 15.175, - "fDZ" : 0.208, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 20, - "fBits" : 50331648, - "fName" : "TOF2ChamberS1", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 29.501, - "fDY" : 16.676, - "fDZ" : 0.841, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 21, - "fBits" : 50331648, - "fName" : "VETO", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 83.5, - "fDY" : 53.5, - "fDZ" : 52.5, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 22, - "fBits" : 50331648, - "fName" : "VMDL", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 7.5, - "fDY" : 7.5, - "fDZ" : 52, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 23, - "fBits" : 50331648, - "fName" : "VFEL", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 7.3, - "fDY" : 7.3, - "fDZ" : 1, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 24, - "fBits" : 50331648, - "fName" : "VPBL", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 7.3, - "fDY" : 7.3, - "fDZ" : 0.5, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 25, - "fBits" : 50331648, - "fName" : "VSCL", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 7.3, - "fDY" : 7.3, - "fDZ" : 0.25, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 26, - "fBits" : 50331648, - "fName" : "VRFL", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 0.2, - "fDY" : 7.3, - "fDZ" : 1, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 27, - "fBits" : 50331648, - "fName" : "VRPL", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 0.2, - "fDY" : 7.3, - "fDZ" : 0.5, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 28, - "fBits" : 50331648, - "fName" : "VRSL", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 0.2, - "fDY" : 7.3, - "fDZ" : 0.25, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 29, - "fBits" : 50331648, - "fName" : "UMDL", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.75, - "fDY" : 3.75, - "fDZ" : 52, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 30, - "fBits" : 50331648, - "fName" : "USCL", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.65, - "fDY" : 3.65, - "fDZ" : 0.25, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 31, - "fBits" : 50331648, - "fName" : "URSL", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 0.1, - "fDY" : 3.65, - "fDZ" : 0.25, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 32, - "fBits" : 50331648, - "fName" : "UPBL", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.65, - "fDY" : 3.65, - "fDZ" : 0.5, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 33, - "fBits" : 50331648, - "fName" : "UFEL", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.65, - "fDY" : 3.65, - "fDZ" : 1, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 34, - "fBits" : 50331648, - "fName" : "URFL", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 0.1, - "fDY" : 3.65, - "fDZ" : 1, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 35, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "module_partS - holeS:hole_module_trans_6051", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 40.8, - "fDY" : 22.5, - "fDZ" : 0.45, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoSubtraction", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "module_partS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 40.8, - "fDY" : 22.5, - "fDZ" : 0.45, - "fOrigin" : [0, 0, 0] - }, - "fRight" : { - "_typename" : "TGeoTube", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "holeS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 9216, - "fDX" : 5.75, - "fDY" : 5.75, - "fDZ" : 0.46, - "fOrigin" : [0, 0, 0], - "fRmin" : 0, - "fRmax" : 5.75, - "fDz" : 0.46 - }, - "fLeftMat" : {"$ref":838}, - "fRightMat" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "hole_module_trans_6051", - "fTitle" : "", - "fTranslation" : [-40.8, -22.5, 0] - } - } - }, { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 36, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "module_partS - holeS:hole_module_trans_9663", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 40.8, - "fDY" : 22.5, - "fDZ" : 0.45, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoSubtraction", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : {"$ref":909}, - "fRight" : {"$ref":910}, - "fLeftMat" : {"$ref":838}, - "fRightMat" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "hole_module_trans_9663", - "fTitle" : "", - "fTranslation" : [-40.8, -22.5, 0] - } - } - }, { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 37, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "module_partS - holeS:hole_module_trans_3220", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 40.8, - "fDY" : 22.5, - "fDZ" : 0.45, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoSubtraction", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : {"$ref":909}, - "fRight" : {"$ref":910}, - "fLeftMat" : {"$ref":838}, - "fRightMat" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "hole_module_trans_3220", - "fTitle" : "", - "fTranslation" : [-40.8, -22.5, 0] - } - } - }, { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 38, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "module_partS - holeS:hole_module_trans_9357", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 40.8, - "fDY" : 22.5, - "fDZ" : 0.45, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoSubtraction", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : {"$ref":909}, - "fRight" : {"$ref":910}, - "fLeftMat" : {"$ref":838}, - "fRightMat" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "hole_module_trans_9357", - "fTitle" : "", - "fTranslation" : [-40.8, -22.5, 0] - } - } - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 39, - "fBits" : 50331648, - "fName" : "moduleS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 33, - "fDY" : 20.5, - "fDZ" : 0.45, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 40, - "fBits" : 50331648, - "fName" : "vertical_frameS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 2.5, - "fDY" : 24.25, - "fDZ" : 1.15, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 41, - "fBits" : 50331648, - "fName" : "horizontal_frameS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 33, - "fDY" : 1.875, - "fDZ" : 1.15, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoShapeAssembly", - "fUniqueID" : 42, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fShapeId" : 0, - "fShapeBits" : 1024, - "fDX" : 38, - "fDY" : 24.25, - "fDZ" : 1.15, - "fOrigin" : [0, 0, 0], - "fVolume" : { - "_typename" : "TGeoVolumeAssembly", - "fUniqueID" : 0, - "fBits" : 59768832, - "fName" : "frame0_station0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 1, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station0_vertical_frameV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58736640, - "fName" : "frame0_station0_vertical_frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":922}, - "fMedium" : { - "_typename" : "TGeoMedium", - "fUniqueID" : 12, - "fBits" : 50331648, - "fName" : "HE_GAS", - "fTitle" : "", - "fId" : 12, - "fParams" : [0, 1, 0.19, 0.25, -1, -1, 0.001, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "fMaterial" : { - "_typename" : "TGeoMaterial", - "fUniqueID" : 14, - "fBits" : 50331648, - "fName" : "HE_GAS", - "fTitle" : "", - "fFillColor" : 19, - "fFillStyle" : 1001, - "fIndex" : 13, - "fA" : 4, - "fZ" : 2, - "fDensity" : 1.78e-4, - "fRadLen" : 479968.980732484, - "fIntLen" : 312331.95325677, - "fTemperature" : 273.15, - "fPressure" : 632420000, - "fState" : 0, - "fShader" : null, - "fCerenkov" : null, - "fElement" : null - } - }, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 32, - "fNtotal" : 1, - "fRefCount" : 2 - }, - "fMother" : {"$ref":925}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":384} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station0_vertical_frameV_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":928}, - "fMother" : {"$ref":925}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":385} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station0_horizontal_frameV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58736640, - "fName" : "frame0_station0_horizontal_frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":923}, - "fMedium" : { - "_typename" : "TGeoMedium", - "fUniqueID" : 18, - "fBits" : 50331648, - "fName" : "carbon", - "fTitle" : "", - "fId" : 18, - "fParams" : [0, 1, 20, -1, -1, -1, 0.001, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "fMaterial" : { - "_typename" : "TGeoMaterial", - "fUniqueID" : 18, - "fBits" : 50331648, - "fName" : "carbon", - "fTitle" : "", - "fFillColor" : 19, - "fFillStyle" : 1001, - "fIndex" : 17, - "fA" : 12.011, - "fZ" : 6, - "fDensity" : 2.265, - "fRadLen" : 18.7627684755763, - "fIntLen" : 35.4089682265511, - "fTemperature" : 273.15, - "fPressure" : 632420000, - "fState" : 0, - "fShader" : null, - "fCerenkov" : null, - "fElement" : null - } - }, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 33, - "fNtotal" : 1, - "fRefCount" : 2 - }, - "fMother" : {"$ref":925}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":386} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station0_horizontal_frameV_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":933}, - "fMother" : {"$ref":925}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":387} - }] - }, - "fShape" : {"$ref":924}, - "fMedium" : { - "_typename" : "TGeoMedium", - "fUniqueID" : 1, - "fBits" : 50331648, - "fName" : "air", - "fTitle" : "", - "fId" : 1, - "fParams" : [0, 1, 20, -1, -1, -1, 0.001, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "fMaterial" : { - "_typename" : "TGeoMixture", - "fUniqueID" : 1, - "fBits" : 50462720, - "fName" : "air", - "fTitle" : "", - "fFillColor" : 19, - "fFillStyle" : 1001, - "fIndex" : 0, - "fA" : 14.6873, - "fZ" : 7.32, - "fDensity" : 0.001205, - "fRadLen" : 30422.5122009781, - "fIntLen" : 70886.8082068035, - "fTemperature" : 273.15, - "fPressure" : 632420000, - "fState" : 0, - "fShader" : null, - "fCerenkov" : null, - "fElement" : null, - "fNelements" : 3, - "fZmixture" : [7, 8, 18], - "fAmixture" : [14.01, 16, 39.95], - "fWeights" : [0.78, 0.21, 0.01], - "fNatoms" : [], - "fVecNbOfAtomsPerVolume" : [], - "fElements" : null - } - }, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 34, - "fNtotal" : 5, - "fRefCount" : 5 - }, - "fBBoxOK" : true - }, { - "_typename" : "TGeoShapeAssembly", - "fUniqueID" : 43, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fShapeId" : 0, - "fShapeBits" : 1024, - "fDX" : 38, - "fDY" : 24.25, - "fDZ" : 1.15, - "fOrigin" : [0, 0, 0.45], - "fVolume" : { - "_typename" : "TGeoVolumeAssembly", - "fUniqueID" : 0, - "fBits" : 59768832, - "fName" : "station0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 1, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sensor_module0_station0_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "Sensor_module0_station0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 7, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":921}, - "fMedium" : { - "_typename" : "TGeoMedium", - "fUniqueID" : 11, - "fBits" : 50331648, - "fName" : "IRON", - "fTitle" : "", - "fId" : 11, - "fParams" : [0, 1, 0.19, 1, -1, -1, 0.1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "fMaterial" : { - "_typename" : "TGeoMaterial", - "fUniqueID" : 9, - "fBits" : 50462720, - "fName" : "IRON", - "fTitle" : "", - "fFillColor" : 19, - "fFillStyle" : 1001, - "fIndex" : 8, - "fA" : 55.85, - "fZ" : 26, - "fDensity" : 7.87, - "fRadLen" : 1.75771664360148, - "fIntLen" : 16.9675125483994, - "fTemperature" : 273.15, - "fPressure" : 632420000, - "fState" : 0, - "fShader" : null, - "fCerenkov" : null, - "fElement" : null - } - }, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 31, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":940}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":388} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station0_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":925}, - "fMother" : {"$ref":940}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":389} - }] - }, - "fShape" : {"$ref":939}, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 35, - "fNtotal" : 7, - "fRefCount" : 3 - }, - "fBBoxOK" : true - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 44, - "fBits" : 50331648, - "fName" : "moduleS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 33, - "fDY" : 20.5, - "fDZ" : 0.45, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 45, - "fBits" : 50331648, - "fName" : "vertical_frameS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 2.5, - "fDY" : 24.25, - "fDZ" : 1.15, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 46, - "fBits" : 50331648, - "fName" : "horizontal_frameS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 33, - "fDY" : 1.875, - "fDZ" : 1.15, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoShapeAssembly", - "fUniqueID" : 47, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fShapeId" : 0, - "fShapeBits" : 1024, - "fDX" : 38, - "fDY" : 24.25, - "fDZ" : 1.15, - "fOrigin" : [0, 0, 0], - "fVolume" : { - "_typename" : "TGeoVolumeAssembly", - "fUniqueID" : 0, - "fBits" : 59768832, - "fName" : "frame0_station1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 1, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station1_vertical_frameV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58736640, - "fName" : "frame0_station1_vertical_frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":948}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 37, - "fNtotal" : 1, - "fRefCount" : 2 - }, - "fMother" : {"$ref":951}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":390} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station1_vertical_frameV_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":954}, - "fMother" : {"$ref":951}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":391} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station1_horizontal_frameV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58736640, - "fName" : "frame0_station1_horizontal_frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":949}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 38, - "fNtotal" : 1, - "fRefCount" : 2 - }, - "fMother" : {"$ref":951}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":392} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station1_horizontal_frameV_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":957}, - "fMother" : {"$ref":951}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":393} - }] - }, - "fShape" : {"$ref":950}, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 39, - "fNtotal" : 5, - "fRefCount" : 5 - }, - "fBBoxOK" : true - }, { - "_typename" : "TGeoShapeAssembly", - "fUniqueID" : 48, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fShapeId" : 0, - "fShapeBits" : 1024, - "fDX" : 38, - "fDY" : 24.25, - "fDZ" : 1.15, - "fOrigin" : [0, 0, 0.45], - "fVolume" : { - "_typename" : "TGeoVolumeAssembly", - "fUniqueID" : 0, - "fBits" : 59768832, - "fName" : "station1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 1, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sensor_module0_station1_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "Sensor_module0_station1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 7, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":947}, - "fMedium" : { - "_typename" : "TGeoMedium", - "fUniqueID" : 17, - "fBits" : 50331648, - "fName" : "arco27030", - "fTitle" : "", - "fId" : 17, - "fParams" : [1, 1, 20, -1, -1, -1, 0.001, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "fMaterial" : { - "_typename" : "TGeoMixture", - "fUniqueID" : 17, - "fBits" : 50331648, - "fName" : "arco27030", - "fTitle" : "", - "fFillColor" : 19, - "fFillStyle" : 1001, - "fIndex" : 16, - "fA" : 36.5434594614837, - "fZ" : 16.5659958077497, - "fDensity" : 0.0019, - "fRadLen" : 10960.19206385, - "fIntLen" : 59730.4440787846, - "fTemperature" : 273.15, - "fPressure" : 632420000, - "fState" : 0, - "fShader" : null, - "fCerenkov" : null, - "fElement" : null, - "fNelements" : 3, - "fZmixture" : [18, 6, 8], - "fAmixture" : [39.948, 12.01, 15.9994], - "fWeights" : [0.864021297422359, 0.0371085832369314, 0.0988701193407093], - "fNatoms" : [], - "fVecNbOfAtomsPerVolume" : [], - "fElements" : null - } - }, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 36, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":960}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":394} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station1_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":951}, - "fMother" : {"$ref":960}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":395} - }] - }, - "fShape" : {"$ref":959}, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 40, - "fNtotal" : 7, - "fRefCount" : 3 - }, - "fBBoxOK" : true - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 49, - "fBits" : 50331648, - "fName" : "moduleS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 33, - "fDY" : 20.5, - "fDZ" : 0.45, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 50, - "fBits" : 50331648, - "fName" : "vertical_frameS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 2.5, - "fDY" : 24.25, - "fDZ" : 1.15, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 51, - "fBits" : 50331648, - "fName" : "horizontal_frameS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 33, - "fDY" : 1.875, - "fDZ" : 1.15, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoShapeAssembly", - "fUniqueID" : 52, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fShapeId" : 0, - "fShapeBits" : 1024, - "fDX" : 38, - "fDY" : 24.25, - "fDZ" : 1.15, - "fOrigin" : [0, 0, 0], - "fVolume" : { - "_typename" : "TGeoVolumeAssembly", - "fUniqueID" : 0, - "fBits" : 59768832, - "fName" : "frame0_station2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 1, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station2_vertical_frameV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58736640, - "fName" : "frame0_station2_vertical_frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":968}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 42, - "fNtotal" : 1, - "fRefCount" : 2 - }, - "fMother" : {"$ref":971}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":396} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station2_vertical_frameV_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":974}, - "fMother" : {"$ref":971}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":397} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station2_horizontal_frameV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58736640, - "fName" : "frame0_station2_horizontal_frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":969}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 43, - "fNtotal" : 1, - "fRefCount" : 2 - }, - "fMother" : {"$ref":971}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":398} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station2_horizontal_frameV_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":977}, - "fMother" : {"$ref":971}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":399} - }] - }, - "fShape" : {"$ref":970}, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 44, - "fNtotal" : 5, - "fRefCount" : 5 - }, - "fBBoxOK" : true - }, { - "_typename" : "TGeoShapeAssembly", - "fUniqueID" : 53, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fShapeId" : 0, - "fShapeBits" : 1024, - "fDX" : 38, - "fDY" : 24.25, - "fDZ" : 1.15, - "fOrigin" : [0, 0, 0.45], - "fVolume" : { - "_typename" : "TGeoVolumeAssembly", - "fUniqueID" : 0, - "fBits" : 59768832, - "fName" : "station2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 1, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sensor_module0_station2_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "Sensor_module0_station2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 7, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":967}, - "fMedium" : {"$ref":964}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 41, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":980}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":400} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station2_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":971}, - "fMother" : {"$ref":980}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":401} - }] - }, - "fShape" : {"$ref":979}, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 45, - "fNtotal" : 7, - "fRefCount" : 3 - }, - "fBBoxOK" : true - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 54, - "fBits" : 50331648, - "fName" : "moduleS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 33, - "fDY" : 20.5, - "fDZ" : 0.55, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 55, - "fBits" : 50331648, - "fName" : "moduleS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 33, - "fDY" : 20.5, - "fDZ" : 0.45, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 56, - "fBits" : 50331648, - "fName" : "vertical_frameS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 2.5, - "fDY" : 24.25, - "fDZ" : 1.25, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 57, - "fBits" : 50331648, - "fName" : "horizontal_frameS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 33, - "fDY" : 1.875, - "fDZ" : 1.25, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoShapeAssembly", - "fUniqueID" : 58, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fShapeId" : 0, - "fShapeBits" : 1024, - "fDX" : 38, - "fDY" : 24.25, - "fDZ" : 1.25, - "fOrigin" : [0, 0, 0], - "fVolume" : { - "_typename" : "TGeoVolumeAssembly", - "fUniqueID" : 0, - "fBits" : 59768832, - "fName" : "frame0_station3", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 1, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station3_vertical_frameV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58736640, - "fName" : "frame0_station3_vertical_frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":987}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 48, - "fNtotal" : 1, - "fRefCount" : 2 - }, - "fMother" : {"$ref":990}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":402} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station3_vertical_frameV_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":993}, - "fMother" : {"$ref":990}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":403} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station3_horizontal_frameV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58736640, - "fName" : "frame0_station3_horizontal_frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":988}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 49, - "fNtotal" : 1, - "fRefCount" : 2 - }, - "fMother" : {"$ref":990}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":404} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station3_horizontal_frameV_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":996}, - "fMother" : {"$ref":990}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":405} - }] - }, - "fShape" : {"$ref":989}, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 50, - "fNtotal" : 5, - "fRefCount" : 5 - }, - "fBBoxOK" : true - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 59, - "fBits" : 50331648, - "fName" : "vertical_frameS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 2.5, - "fDY" : 24.25, - "fDZ" : 1.15, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 60, - "fBits" : 50331648, - "fName" : "horizontal_frameS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 33, - "fDY" : 1.875, - "fDZ" : 1.15, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoShapeAssembly", - "fUniqueID" : 61, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fShapeId" : 0, - "fShapeBits" : 1024, - "fDX" : 38, - "fDY" : 24.25, - "fDZ" : 1.15, - "fOrigin" : [0, 0, 0], - "fVolume" : { - "_typename" : "TGeoVolumeAssembly", - "fUniqueID" : 0, - "fBits" : 59768832, - "fName" : "frame1_station3", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 1, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame1_station3_vertical_frameV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58736640, - "fName" : "frame1_station3_vertical_frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":998}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 51, - "fNtotal" : 1, - "fRefCount" : 2 - }, - "fMother" : {"$ref":1001}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":406} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame1_station3_vertical_frameV_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1004}, - "fMother" : {"$ref":1001}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":407} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame1_station3_horizontal_frameV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58736640, - "fName" : "frame1_station3_horizontal_frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":999}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 52, - "fNtotal" : 1, - "fRefCount" : 2 - }, - "fMother" : {"$ref":1001}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":408} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame1_station3_horizontal_frameV_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1007}, - "fMother" : {"$ref":1001}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":409} - }] - }, - "fShape" : {"$ref":1000}, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 53, - "fNtotal" : 5, - "fRefCount" : 5 - }, - "fBBoxOK" : true - }, { - "_typename" : "TGeoShapeAssembly", - "fUniqueID" : 62, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fShapeId" : 0, - "fShapeBits" : 1024, - "fDX" : 69.2, - "fDY" : 24.35, - "fDZ" : 2.4, - "fOrigin" : [-3.5, 0.0999999999999996, 1.7], - "fVolume" : { - "_typename" : "TGeoVolumeAssembly", - "fUniqueID" : 0, - "fBits" : 59768832, - "fName" : "station3", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 1, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sensor_module0_station3_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "Sensor_module0_station3", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 7, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":985}, - "fMedium" : {"$ref":964}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 46, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1010}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":410} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sensor_module1_station3_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "Sensor_module1_station3", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 7, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":986}, - "fMedium" : {"$ref":964}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 47, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1010}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":411} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station3_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":990}, - "fMother" : {"$ref":1010}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":412} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame1_station3_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1001}, - "fMother" : {"$ref":1010}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":413} - }] - }, - "fShape" : {"$ref":1009}, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 54, - "fNtotal" : 13, - "fRefCount" : 5 - }, - "fBBoxOK" : true - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 63, - "fBits" : 50331648, - "fName" : "vertical_frameS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 2.5, - "fDY" : 26.25, - "fDZ" : 1.95, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 64, - "fBits" : 50331648, - "fName" : "horizontal_upper_frameS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 40.8, - "fDY" : 1.875, - "fDZ" : 1.95, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 65, - "fBits" : 50331648, - "fName" : "horizontal_upper_frameS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 37.925, - "fDY" : 1.875, - "fDZ" : 1.95, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoShapeAssembly", - "fUniqueID" : 66, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fShapeId" : 0, - "fShapeBits" : 1024, - "fDX" : 43.3, - "fDY" : 26.25, - "fDZ" : 1.95, - "fOrigin" : [2.5, 0, 0], - "fVolume" : { - "_typename" : "TGeoVolumeAssembly", - "fUniqueID" : 0, - "fBits" : 59768832, - "fName" : "frame0_station4", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 1, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station4_vertical_frameV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "frame0_station4_vertical_frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1018}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 57, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1022}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":414} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station4_horizontal_upper_frameV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "frame0_station4_horizontal_upper_frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1019}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 58, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1022}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":415} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station4_horizontal_bottom_frameV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "frame0_station4_horizontal_bottom_frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1020}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 59, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1022}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":416} - }] - }, - "fShape" : {"$ref":1021}, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 60, - "fNtotal" : 4, - "fRefCount" : 4 - }, - "fBBoxOK" : true - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 67, - "fBits" : 50331648, - "fName" : "vertical_frameS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 2.5, - "fDY" : 26.25, - "fDZ" : 1.95, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 68, - "fBits" : 50331648, - "fName" : "horizontal_upper_frameS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 40.8, - "fDY" : 1.875, - "fDZ" : 1.95, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 69, - "fBits" : 50331648, - "fName" : "horizontal_upper_frameS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 37.925, - "fDY" : 1.875, - "fDZ" : 1.95, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoShapeAssembly", - "fUniqueID" : 70, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fShapeId" : 0, - "fShapeBits" : 1024, - "fDX" : 43.3, - "fDY" : 26.25, - "fDZ" : 1.95, - "fOrigin" : [2.5, 0, 0], - "fVolume" : { - "_typename" : "TGeoVolumeAssembly", - "fUniqueID" : 0, - "fBits" : 59768832, - "fName" : "frame1_station4", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 1, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame1_station4_vertical_frameV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "frame1_station4_vertical_frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1030}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 61, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1034}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":417} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame1_station4_horizontal_upper_frameV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "frame1_station4_horizontal_upper_frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1031}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 62, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1034}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":418} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame1_station4_horizontal_bottom_frameV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "frame1_station4_horizontal_bottom_frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1032}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 63, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1034}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":419} - }] - }, - "fShape" : {"$ref":1033}, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 64, - "fNtotal" : 4, - "fRefCount" : 4 - }, - "fBBoxOK" : true - }, { - "_typename" : "TGeoShapeAssembly", - "fUniqueID" : 71, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fShapeId" : 0, - "fShapeBits" : 1024, - "fDX" : 86.6, - "fDY" : 26.25, - "fDZ" : 1.95, - "fOrigin" : [0, 0, 0.45], - "fVolume" : { - "_typename" : "TGeoVolumeAssembly", - "fUniqueID" : 0, - "fBits" : 59768832, - "fName" : "station4", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 1, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sensor_module0_station4_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "Sensor_module0_station4", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 7, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":907}, - "fMedium" : {"$ref":964}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 55, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1043}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":420} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sensor_module1_station4_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "Sensor_module1_station4", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 7, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":912}, - "fMedium" : {"$ref":964}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 56, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1043}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":421} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station4_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1022}, - "fMother" : {"$ref":1043}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":423} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame1_station4_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1034}, - "fMother" : {"$ref":1043}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":424} - }] - }, - "fShape" : {"$ref":1042}, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 65, - "fNtotal" : 11, - "fRefCount" : 5 - }, - "fBBoxOK" : true - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 72, - "fBits" : 50331648, - "fName" : "vertical_frameS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 2.5, - "fDY" : 26.25, - "fDZ" : 1.95, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 73, - "fBits" : 50331648, - "fName" : "horizontal_upper_frameS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 40.8, - "fDY" : 1.875, - "fDZ" : 1.95, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 74, - "fBits" : 50331648, - "fName" : "horizontal_upper_frameS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 37.925, - "fDY" : 1.875, - "fDZ" : 1.95, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoShapeAssembly", - "fUniqueID" : 75, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fShapeId" : 0, - "fShapeBits" : 1024, - "fDX" : 43.3, - "fDY" : 26.25, - "fDZ" : 1.95, - "fOrigin" : [2.5, 0, 0], - "fVolume" : { - "_typename" : "TGeoVolumeAssembly", - "fUniqueID" : 0, - "fBits" : 59768832, - "fName" : "frame0_station5", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 1, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station5_vertical_frameV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "frame0_station5_vertical_frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1051}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 68, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1055}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":426} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station5_horizontal_upper_frameV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "frame0_station5_horizontal_upper_frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1052}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 69, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1055}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":427} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station5_horizontal_bottom_frameV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "frame0_station5_horizontal_bottom_frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1053}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 70, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1055}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":428} - }] - }, - "fShape" : {"$ref":1054}, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 71, - "fNtotal" : 4, - "fRefCount" : 4 - }, - "fBBoxOK" : true - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 76, - "fBits" : 50331648, - "fName" : "vertical_frameS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 2.5, - "fDY" : 26.25, - "fDZ" : 1.95, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 77, - "fBits" : 50331648, - "fName" : "horizontal_upper_frameS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 40.8, - "fDY" : 1.875, - "fDZ" : 1.95, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 78, - "fBits" : 50331648, - "fName" : "horizontal_upper_frameS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 37.925, - "fDY" : 1.875, - "fDZ" : 1.95, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoShapeAssembly", - "fUniqueID" : 79, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fShapeId" : 0, - "fShapeBits" : 1024, - "fDX" : 43.3, - "fDY" : 26.25, - "fDZ" : 1.95, - "fOrigin" : [2.5, 0, 0], - "fVolume" : { - "_typename" : "TGeoVolumeAssembly", - "fUniqueID" : 0, - "fBits" : 59768832, - "fName" : "frame1_station5", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 1, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame1_station5_vertical_frameV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "frame1_station5_vertical_frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1063}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 72, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1067}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":429} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame1_station5_horizontal_upper_frameV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "frame1_station5_horizontal_upper_frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1064}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 73, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1067}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":430} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame1_station5_horizontal_bottom_frameV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "frame1_station5_horizontal_bottom_frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1065}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 74, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1067}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":431} - }] - }, - "fShape" : {"$ref":1066}, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 75, - "fNtotal" : 4, - "fRefCount" : 4 - }, - "fBBoxOK" : true - }, { - "_typename" : "TGeoShapeAssembly", - "fUniqueID" : 80, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fShapeId" : 0, - "fShapeBits" : 1024, - "fDX" : 86.6, - "fDY" : 26.25, - "fDZ" : 1.95, - "fOrigin" : [0, 0, 0.45], - "fVolume" : { - "_typename" : "TGeoVolumeAssembly", - "fUniqueID" : 0, - "fBits" : 59768832, - "fName" : "station5", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 1, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sensor_module0_station5_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "Sensor_module0_station5", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 7, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":915}, - "fMedium" : {"$ref":964}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 66, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1076}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":432} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sensor_module1_station5_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "Sensor_module1_station5", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 7, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":918}, - "fMedium" : {"$ref":964}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 67, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1076}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":433} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame0_station5_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1055}, - "fMother" : {"$ref":1076}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":435} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frame1_station5_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1067}, - "fMother" : {"$ref":1076}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":436} - }] - }, - "fShape" : {"$ref":1075}, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 76, - "fNtotal" : 11, - "fRefCount" : 5 - }, - "fBBoxOK" : true - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 81, - "fBits" : 50331648, - "fName" : "StripGas", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 0.5, - "fDY" : 15, - "fDZ" : 0.150000005960464, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 82, - "fBits" : 50331648, - "fName" : "DetectorGlass", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 30, - "fDY" : 15, - "fDZ" : 0.154499992728233, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 83, - "fBits" : 50331648, - "fName" : "DetectorPlate", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 30, - "fDY" : 15, - "fDZ" : 0.159999996423721, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoShapeAssembly", - "fUniqueID" : 84, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fShapeId" : 0, - "fShapeBits" : 1024, - "fDX" : 30, - "fDY" : 15, - "fDZ" : 1.5, - "fOrigin" : [0, 0, 0], - "fVolume" : { - "_typename" : "TGeoVolumeAssembly", - "fUniqueID" : 0, - "fBits" : 59785216, - "fName" : "tof1Detector", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 1, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58736640, - "fName" : "tof1StripActiveGasV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1084}, - "fMedium" : { - "_typename" : "TGeoMedium", - "fUniqueID" : 6, - "fBits" : 50331648, - "fName" : "RPCgas", - "fTitle" : "", - "fId" : 6, - "fParams" : [1, 1, 20, -1, -1, -1, 0.001, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "fMaterial" : { - "_typename" : "TGeoMixture", - "fUniqueID" : 6, - "fBits" : 50331648, - "fName" : "RPCgas", - "fTitle" : "", - "fFillColor" : 19, - "fFillStyle" : 1001, - "fIndex" : 5, - "fA" : 13.134094, - "fZ" : 6.433, - "fDensity" : 0.00375, - "fRadLen" : 10290.7323640963, - "fIntLen" : 17251.1264038771, - "fTemperature" : 273.15, - "fPressure" : 632420000, - "fState" : 0, - "fShader" : null, - "fCerenkov" : null, - "fElement" : null, - "fNelements" : 4, - "fZmixture" : [6, 1, 9, 16], - "fAmixture" : [12.01, 1.008, 19, 32.06], - "fWeights" : [0.227, 0.248, 0.511, 0.014], - "fNatoms" : [], - "fVecNbOfAtomsPerVolume" : [], - "fElements" : null - } - }, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 78, - "fNtotal" : 1, - "fRefCount" : 48 - }, - "fMother" : {"$ref":1088}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":438} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":439} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_3", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 3, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":440} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_4", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 4, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":441} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_5", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 5, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":442} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_6", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 6, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":443} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_7", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 7, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":444} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_8", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 8, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":445} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_9", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 9, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":446} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_10", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 10, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":447} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_11", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 11, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":448} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_12", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 12, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":449} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_13", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 13, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":450} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_14", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 14, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":451} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_15", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 15, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":452} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_16", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 16, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":453} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_17", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 17, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":454} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_18", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 18, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":455} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_19", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 19, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":456} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_20", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 20, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":457} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_21", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 21, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":458} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_22", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 22, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":459} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_23", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 23, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":460} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_24", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 24, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":461} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_25", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 25, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":462} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_26", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 26, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":463} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_27", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 27, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":464} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_28", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 28, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":465} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_29", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 29, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":466} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_30", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 30, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":467} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_31", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 31, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":468} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_32", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 32, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":469} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_33", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 33, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":470} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_34", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 34, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":471} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_35", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 35, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":472} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_36", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 36, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":473} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_37", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 37, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":474} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_38", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 38, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":475} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_39", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 39, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":476} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_40", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 40, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":477} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_41", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 41, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":478} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_42", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 42, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":479} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_43", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 43, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":480} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_44", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 44, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":481} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_45", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 45, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":482} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_46", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 46, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":483} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_47", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 47, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":484} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1StripActiveGasV_48", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1091}, - "fMother" : {"$ref":1088}, - "fNumber" : 48, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":485} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1DetGlassV_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58736640, - "fName" : "tof1DetGlassV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 7, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1085}, - "fMedium" : { - "_typename" : "TGeoMedium", - "fUniqueID" : 5, - "fBits" : 50331648, - "fName" : "RPCglass", - "fTitle" : "", - "fId" : 5, - "fParams" : [0, 1, 20, -1, -1, -1, 0.001, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "fMaterial" : { - "_typename" : "TGeoMixture", - "fUniqueID" : 5, - "fBits" : 50331648, - "fName" : "RPCglass", - "fTitle" : "", - "fFillColor" : 19, - "fFillStyle" : 1001, - "fIndex" : 4, - "fA" : 21.6516575137294, - "fZ" : 10.8047928107838, - "fDensity" : 2.55, - "fRadLen" : 10.5807291507198, - "fIntLen" : 37.6225717576057, - "fTemperature" : 273.15, - "fPressure" : 632420000, - "fState" : 0, - "fShader" : null, - "fCerenkov" : null, - "fElement" : null, - "fNelements" : 2, - "fZmixture" : [14, 8], - "fAmixture" : [28.09, 16], - "fWeights" : [0.467465468463971, 0.532534531536029], - "fNatoms" : [], - "fVecNbOfAtomsPerVolume" : [], - "fElements" : null - } - }, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 79, - "fNtotal" : 1, - "fRefCount" : 2 - }, - "fMother" : {"$ref":1088}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":486} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1DetGlassV_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1142}, - "fMother" : {"$ref":1088}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":487} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1DetPlateV_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58736640, - "fName" : "tof1DetPlateV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 3, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1086}, - "fMedium" : { - "_typename" : "TGeoMedium", - "fUniqueID" : 7, - "fBits" : 50331648, - "fName" : "G10", - "fTitle" : "", - "fId" : 7, - "fParams" : [0, 1, 20, -1, -1, -1, 0.001, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "fMaterial" : { - "_typename" : "TGeoMixture", - "fUniqueID" : 7, - "fBits" : 50331648, - "fName" : "G10", - "fTitle" : "", - "fFillColor" : 19, - "fFillStyle" : 1001, - "fIndex" : 6, - "fA" : 13.127344, - "fZ" : 6.696, - "fDensity" : 1.7, - "fRadLen" : 21.1963817958332, - "fIntLen" : 36.4724641224032, - "fTemperature" : 273.15, - "fPressure" : 632420000, - "fState" : 0, - "fShader" : null, - "fCerenkov" : null, - "fElement" : null, - "fNelements" : 4, - "fZmixture" : [6, 1, 8, 14], - "fAmixture" : [12.01, 1.008, 16, 28.09], - "fWeights" : [0.259, 0.288, 0.248, 0.205], - "fNatoms" : [], - "fVecNbOfAtomsPerVolume" : [], - "fElements" : null - } - }, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 80, - "fNtotal" : 1, - "fRefCount" : 2 - }, - "fMother" : {"$ref":1088}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":488} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1DetPlateV_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1147}, - "fMother" : {"$ref":1088}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":489} - }] - }, - "fShape" : {"$ref":1087}, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 81, - "fNtotal" : 53, - "fRefCount" : 62 - }, - "fBBoxOK" : true - }, { - "_typename" : "TGeoPgon", - "fUniqueID" : 85, - "fBits" : 50331648, - "fName" : "OctagonActivePlaneS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 67503104, - "fDX" : 156.77368629035, - "fDY" : 156.77368629035, - "fDZ" : 0.05, - "fOrigin" : [0, 0, 0], - "fNz" : 2, - "fPhi1" : 0, - "fDphi" : 360, - "fRmin" : [12, 12], - "fRmax" : [144.84, 144.84], - "fZ" : [-0.05, 0.05], - "fNedges" : 8 - }, { - "_typename" : "TGeoPgon", - "fUniqueID" : 86, - "fBits" : 50331648, - "fName" : "OctagonS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 67503104, - "fDX" : 156.77368629035, - "fDY" : 156.77368629035, - "fDZ" : 13.25, - "fOrigin" : [0, 0, 0], - "fNz" : 2, - "fPhi1" : 0, - "fDphi" : 360, - "fRmin" : [12, 12], - "fRmax" : [144.84, 144.84], - "fZ" : [-13.25, 13.25], - "fNedges" : 8 - }, { - "_typename" : "TGeoPgon", - "fUniqueID" : 87, - "fBits" : 50331648, - "fName" : "MWPCContainerS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 67503104, - "fDX" : 26.15396719429, - "fDY" : 26.15396719429, - "fDZ" : 3.5045, - "fOrigin" : [0, 0, 0], - "fNz" : 2, - "fPhi1" : 0, - "fDphi" : 360, - "fRmin" : [0, 0], - "fRmax" : [22.65, 22.65], - "fZ" : [-3.5045, 3.5045], - "fNedges" : 6 - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 88, - "fBits" : 50331648, - "fName" : "MWPCActivePlaneS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 12, - "fDY" : 21.65, - "fDZ" : 0.1, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 89, - "fBits" : 50331648, - "fName" : "ecal01", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 48, - "fDY" : 60, - "fDZ" : 27.5, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 90, - "fBits" : 50331648, - "fName" : "ecal01mod", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 6, - "fDY" : 6, - "fDZ" : 20, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 91, - "fBits" : 50331648, - "fName" : "ecal01front", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 6, - "fDY" : 6, - "fDZ" : 0.1, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 92, - "fBits" : 50331648, - "fName" : "ecal01lay", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 6, - "fDY" : 6, - "fDZ" : 0.09, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 93, - "fBits" : 50331648, - "fName" : "ecal01lead", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 6, - "fDY" : 6, - "fDZ" : 0.015, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 94, - "fBits" : 50331648, - "fName" : "ecal01scint", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 2, - "fDY" : 2, - "fDZ" : 0.075, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 95, - "fBits" : 50331648, - "fName" : "frame_with_windowsS", - "fTitle" : "(frameS0-upper_window_frameS0:upper_window_frame_pos0)-lower_window_rect_frameS0:lower_window_rect_frame_pos0", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 0, - "fDY" : 0, - "fDZ" : 0, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoSubtraction", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 96, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "frameS0-upper_window_frameS0:upper_window_frame_pos0", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 3.15, - "fDY" : 6.30175, - "fDZ" : 0.09, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoSubtraction", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frameS0", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.15, - "fDY" : 6.30175, - "fDZ" : 0.09, - "fOrigin" : [0, 0, 0] - }, - "fRight" : { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "upper_window_frameS0", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.0905, - "fOrigin" : [0, 0, 0] - }, - "fLeftMat" : {"$ref":839}, - "fRightMat" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "upper_window_frame_pos0", - "fTitle" : "", - "fTranslation" : [0, 3.15175, 0] - } - } - }, - "fRight" : { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "lower_window_rect_frameS0", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.0905, - "fOrigin" : [0, 0, 0] - }, - "fLeftMat" : {"$ref":839}, - "fRightMat" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "lower_window_rect_frame_pos0", - "fTitle" : "", - "fTranslation" : [0, -3.15175, 0] - } - } - }, {"$ref":1163}, { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 97, - "fBits" : 50331648, - "fName" : "frame_with_windowsS", - "fTitle" : "(frameS1-upper_window_frameS1:upper_window_frame_pos1)-lower_window_bevel_frameS1:lower_window_bevel_frame_pos1", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 0, - "fDY" : 0, - "fDZ" : 0, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoSubtraction", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 98, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "frameS1-upper_window_frameS1:upper_window_frame_pos1", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 3.15, - "fDY" : 6.30175, - "fDZ" : 0.09, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoSubtraction", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : { - "_typename" : "TGeoXtru", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frameS1", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 134218752, - "fDX" : 3.15, - "fDY" : 6.30175, - "fDZ" : 0.09, - "fOrigin" : [0, 0, 0], - "fNvert" : 5, - "fNz" : 2, - "fZcurrent" : 0, - "fX" : [3.15, -3.15, -3.15, -0.67, 3.15], - "fY" : [6.30175, 6.30175, -6.30175, -6.30175, -2.48175], - "fZ" : [-0.09, 0.09], - "fScale" : [1, 1], - "fX0" : [0, 0], - "fY0" : [0, 0] - }, - "fRight" : { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "upper_window_frameS1", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.0905, - "fOrigin" : [0, 0, 0] - }, - "fLeftMat" : {"$ref":839}, - "fRightMat" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "upper_window_frame_pos1", - "fTitle" : "", - "fTranslation" : [0, 3.15175, 0] - } - } - }, - "fRight" : { - "_typename" : "TGeoXtru", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "lower_window_bevel_frameS1", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 134218752, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.0905, - "fOrigin" : [0, 0, 0], - "fNvert" : 5, - "fNz" : 2, - "fZcurrent" : 0, - "fX" : [3.05, -3.05, -3.05, -0.711421356237309, 3.05], - "fY" : [3.05, 3.05, -3.05, -3.05, 0.71142135623731], - "fZ" : [-0.0905, 0.0905], - "fScale" : [1, 1], - "fX0" : [0, 0], - "fY0" : [0, 0] - }, - "fLeftMat" : {"$ref":839}, - "fRightMat" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "lower_window_bevel_frame_pos1", - "fTitle" : "", - "fTranslation" : [0, -3.15175, 0] - } - } - }, {"$ref":1172}, { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 99, - "fBits" : 50331648, - "fName" : "frame_with_windowsS", - "fTitle" : "(frameS2-upper_window_frameS2:upper_window_frame_pos2)-lower_window_bevel_frameS2:lower_window_bevel_frame_pos2", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 0, - "fDY" : 0, - "fDZ" : 0, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoSubtraction", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 100, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "frameS2-upper_window_frameS2:upper_window_frame_pos2", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 3.15, - "fDY" : 6.30175, - "fDZ" : 0.09, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoSubtraction", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : { - "_typename" : "TGeoXtru", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frameS2", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 134218752, - "fDX" : 3.15, - "fDY" : 6.30175, - "fDZ" : 0.09, - "fOrigin" : [0, 0, 0], - "fNvert" : 5, - "fNz" : 2, - "fZcurrent" : 0, - "fX" : [3.15, -3.15, -3.15, -0.67, 3.15], - "fY" : [6.30175, 6.30175, -6.30175, -6.30175, -2.48175], - "fZ" : [-0.09, 0.09], - "fScale" : [1, 1], - "fX0" : [0, 0], - "fY0" : [0, 0] - }, - "fRight" : { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "upper_window_frameS2", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.0905, - "fOrigin" : [0, 0, 0] - }, - "fLeftMat" : {"$ref":839}, - "fRightMat" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "upper_window_frame_pos2", - "fTitle" : "", - "fTranslation" : [0, 3.15175, 0] - } - } - }, - "fRight" : { - "_typename" : "TGeoXtru", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "lower_window_bevel_frameS2", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 134218752, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.0905, - "fOrigin" : [0, 0, 0], - "fNvert" : 5, - "fNz" : 2, - "fZcurrent" : 0, - "fX" : [3.05, -3.05, -3.05, -0.711421356237309, 3.05], - "fY" : [3.05, 3.05, -3.05, -3.05, 0.71142135623731], - "fZ" : [-0.0905, 0.0905], - "fScale" : [1, 1], - "fX0" : [0, 0], - "fY0" : [0, 0] - }, - "fLeftMat" : {"$ref":839}, - "fRightMat" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "lower_window_bevel_frame_pos2", - "fTitle" : "", - "fTranslation" : [0, -3.15175, 0] - } - } - }, {"$ref":1181}, { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 101, - "fBits" : 50331648, - "fName" : "frame_with_windowsS", - "fTitle" : "(frameS3-upper_window_frameS3:upper_window_frame_pos3)-lower_window_rect_frameS3:lower_window_rect_frame_pos3", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 0, - "fDY" : 0, - "fDZ" : 0, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoSubtraction", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 102, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "frameS3-upper_window_frameS3:upper_window_frame_pos3", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 3.15, - "fDY" : 6.30175, - "fDZ" : 0.09, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoSubtraction", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frameS3", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.15, - "fDY" : 6.30175, - "fDZ" : 0.09, - "fOrigin" : [0, 0, 0] - }, - "fRight" : { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "upper_window_frameS3", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.0905, - "fOrigin" : [0, 0, 0] - }, - "fLeftMat" : {"$ref":839}, - "fRightMat" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "upper_window_frame_pos3", - "fTitle" : "", - "fTranslation" : [0, 3.15175, 0] - } - } - }, - "fRight" : { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "lower_window_rect_frameS3", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.0905, - "fOrigin" : [0, 0, 0] - }, - "fLeftMat" : {"$ref":839}, - "fRightMat" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "lower_window_rect_frame_pos3", - "fTitle" : "", - "fTranslation" : [0, -3.15175, 0] - } - } - }, {"$ref":1190}, { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 103, - "fBits" : 50331648, - "fName" : "frame_with_windowsS", - "fTitle" : "(frameS4-upper_window_frameS4:upper_window_frame_pos4)-lower_window_rect_frameS4:lower_window_rect_frame_pos4", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 0, - "fDY" : 0, - "fDZ" : 0, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoSubtraction", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 104, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "frameS4-upper_window_frameS4:upper_window_frame_pos4", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 3.15, - "fDY" : 6.30175, - "fDZ" : 0.09, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoSubtraction", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frameS4", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.15, - "fDY" : 6.30175, - "fDZ" : 0.09, - "fOrigin" : [0, 0, 0] - }, - "fRight" : { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "upper_window_frameS4", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.0905, - "fOrigin" : [0, 0, 0] - }, - "fLeftMat" : {"$ref":839}, - "fRightMat" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "upper_window_frame_pos4", - "fTitle" : "", - "fTranslation" : [0, 3.15175, 0] - } - } - }, - "fRight" : { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "lower_window_rect_frameS4", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.0905, - "fOrigin" : [0, 0, 0] - }, - "fLeftMat" : {"$ref":839}, - "fRightMat" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "lower_window_rect_frame_pos4", - "fTitle" : "", - "fTranslation" : [0, -3.15175, 0] - } - } - }, {"$ref":1199}, { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 105, - "fBits" : 50331648, - "fName" : "frame_with_windowsS", - "fTitle" : "(frameS5-upper_window_frameS5:upper_window_frame_pos5)-lower_window_bevel_frameS5:lower_window_bevel_frame_pos5", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 0, - "fDY" : 0, - "fDZ" : 0, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoSubtraction", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 106, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "frameS5-upper_window_frameS5:upper_window_frame_pos5", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 3.15, - "fDY" : 6.30175, - "fDZ" : 0.09, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoSubtraction", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : { - "_typename" : "TGeoXtru", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frameS5", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 134218752, - "fDX" : 3.15, - "fDY" : 6.30175, - "fDZ" : 0.09, - "fOrigin" : [0, 0, 0], - "fNvert" : 5, - "fNz" : 2, - "fZcurrent" : 0, - "fX" : [3.15, -3.15, -3.15, -0.67, 3.15], - "fY" : [6.30175, 6.30175, -6.30175, -6.30175, -2.48175], - "fZ" : [-0.09, 0.09], - "fScale" : [1, 1], - "fX0" : [0, 0], - "fY0" : [0, 0] - }, - "fRight" : { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "upper_window_frameS5", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.0905, - "fOrigin" : [0, 0, 0] - }, - "fLeftMat" : {"$ref":839}, - "fRightMat" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "upper_window_frame_pos5", - "fTitle" : "", - "fTranslation" : [0, 3.15175, 0] - } - } - }, - "fRight" : { - "_typename" : "TGeoXtru", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "lower_window_bevel_frameS5", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 134218752, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.0905, - "fOrigin" : [0, 0, 0], - "fNvert" : 5, - "fNz" : 2, - "fZcurrent" : 0, - "fX" : [3.05, -3.05, -3.05, -0.711421356237309, 3.05], - "fY" : [3.05, 3.05, -3.05, -3.05, 0.71142135623731], - "fZ" : [-0.0905, 0.0905], - "fScale" : [1, 1], - "fX0" : [0, 0], - "fY0" : [0, 0] - }, - "fLeftMat" : {"$ref":839}, - "fRightMat" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "lower_window_bevel_frame_pos5", - "fTitle" : "", - "fTranslation" : [0, -3.15175, 0] - } - } - }, {"$ref":1208}, { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 107, - "fBits" : 50331648, - "fName" : "frame_with_windowsS", - "fTitle" : "(frameS6-upper_window_frameS6:upper_window_frame_pos6)-lower_window_bevel_frameS6:lower_window_bevel_frame_pos6", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 0, - "fDY" : 0, - "fDZ" : 0, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoSubtraction", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 108, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "frameS6-upper_window_frameS6:upper_window_frame_pos6", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 3.15, - "fDY" : 6.30175, - "fDZ" : 0.09, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoSubtraction", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : { - "_typename" : "TGeoXtru", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frameS6", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 134218752, - "fDX" : 3.15, - "fDY" : 6.30175, - "fDZ" : 0.09, - "fOrigin" : [0, 0, 0], - "fNvert" : 5, - "fNz" : 2, - "fZcurrent" : 0, - "fX" : [3.15, -3.15, -3.15, -0.67, 3.15], - "fY" : [6.30175, 6.30175, -6.30175, -6.30175, -2.48175], - "fZ" : [-0.09, 0.09], - "fScale" : [1, 1], - "fX0" : [0, 0], - "fY0" : [0, 0] - }, - "fRight" : { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "upper_window_frameS6", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.0905, - "fOrigin" : [0, 0, 0] - }, - "fLeftMat" : {"$ref":839}, - "fRightMat" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "upper_window_frame_pos6", - "fTitle" : "", - "fTranslation" : [0, 3.15175, 0] - } - } - }, - "fRight" : { - "_typename" : "TGeoXtru", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "lower_window_bevel_frameS6", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 134218752, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.0905, - "fOrigin" : [0, 0, 0], - "fNvert" : 5, - "fNz" : 2, - "fZcurrent" : 0, - "fX" : [3.05, -3.05, -3.05, -0.711421356237309, 3.05], - "fY" : [3.05, 3.05, -3.05, -3.05, 0.71142135623731], - "fZ" : [-0.0905, 0.0905], - "fScale" : [1, 1], - "fX0" : [0, 0], - "fY0" : [0, 0] - }, - "fLeftMat" : {"$ref":839}, - "fRightMat" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "lower_window_bevel_frame_pos6", - "fTitle" : "", - "fTranslation" : [0, -3.15175, 0] - } - } - }, {"$ref":1217}, { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 109, - "fBits" : 50331648, - "fName" : "frame_with_windowsS", - "fTitle" : "(frameS7-upper_window_frameS7:upper_window_frame_pos7)-lower_window_rect_frameS7:lower_window_rect_frame_pos7", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 0, - "fDY" : 0, - "fDZ" : 0, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoSubtraction", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : { - "_typename" : "TGeoCompositeShape", - "fUniqueID" : 110, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "frameS7-upper_window_frameS7:upper_window_frame_pos7", - "fShapeId" : 256, - "fShapeBits" : 33555456, - "fDX" : 3.15, - "fDY" : 6.30175, - "fDZ" : 0.09, - "fOrigin" : [0, 0, 0], - "fNode" : { - "_typename" : "TGeoSubtraction", - "fUniqueID" : 0, - "fBits" : 50331648, - "fLeft" : { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frameS7", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.15, - "fDY" : 6.30175, - "fDZ" : 0.09, - "fOrigin" : [0, 0, 0] - }, - "fRight" : { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "upper_window_frameS7", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.0905, - "fOrigin" : [0, 0, 0] - }, - "fLeftMat" : {"$ref":839}, - "fRightMat" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "upper_window_frame_pos7", - "fTitle" : "", - "fTranslation" : [0, 3.15175, 0] - } - } - }, - "fRight" : { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "lower_window_rect_frameS7", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.0905, - "fOrigin" : [0, 0, 0] - }, - "fLeftMat" : {"$ref":839}, - "fRightMat" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "lower_window_rect_frame_pos7", - "fTitle" : "", - "fTranslation" : [0, -3.15175, 0] - } - } - }, {"$ref":1226}, { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "sensor_zone_upper_partS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.015, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "sensor_zone_lower_part_rectS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.015, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "moduleS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.15, - "fDY" : 6.30175, - "fDZ" : 0.015, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoXtru", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "sensor_zone_lower_part_bevelS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 134218752, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.015, - "fOrigin" : [0, 0, 0], - "fNvert" : 5, - "fNz" : 2, - "fZcurrent" : 0, - "fX" : [3.05, -3.05, -3.05, -0.711421356237309, 3.05], - "fY" : [3.05, 3.05, -3.05, -3.05, 0.71142135623731], - "fZ" : [-0.015, 0.015], - "fScale" : [1, 1], - "fX0" : [0, 0], - "fY0" : [0, 0] - }, { - "_typename" : "TGeoXtru", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "moduleS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 134218752, - "fDX" : 3.15, - "fDY" : 6.30175, - "fDZ" : 0.015, - "fOrigin" : [0, 0, 0], - "fNvert" : 5, - "fNz" : 2, - "fZcurrent" : 0, - "fX" : [3.15, -3.15, -3.15, -0.67, 3.15], - "fY" : [6.30175, 6.30175, -6.30175, -6.30175, -2.48175], - "fZ" : [-0.015, 0.015], - "fScale" : [1, 1], - "fX0" : [0, 0], - "fY0" : [0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "sensor_zone_upper_partS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.015, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoXtru", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "moduleS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 134218752, - "fDX" : 3.15, - "fDY" : 6.30175, - "fDZ" : 0.015, - "fOrigin" : [0, 0, 0], - "fNvert" : 5, - "fNz" : 2, - "fZcurrent" : 0, - "fX" : [3.15, -3.15, -3.15, -0.67, 3.15], - "fY" : [6.30175, 6.30175, -6.30175, -6.30175, -2.48175], - "fZ" : [-0.015, 0.015], - "fScale" : [1, 1], - "fX0" : [0, 0], - "fY0" : [0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "sensor_zone_upper_partS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.015, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoXtru", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "sensor_zone_lower_part_bevelS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 134218752, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.015, - "fOrigin" : [0, 0, 0], - "fNvert" : 5, - "fNz" : 2, - "fZcurrent" : 0, - "fX" : [3.05, -3.05, -3.05, -0.711421356237309, 3.05], - "fY" : [3.05, 3.05, -3.05, -3.05, 0.71142135623731], - "fZ" : [-0.015, 0.015], - "fScale" : [1, 1], - "fX0" : [0, 0], - "fY0" : [0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "moduleS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.15, - "fDY" : 6.30175, - "fDZ" : 0.015, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "sensor_zone_upper_partS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.015, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "sensor_zone_lower_part_rectS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.015, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "moduleS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.15, - "fDY" : 6.30175, - "fDZ" : 0.015, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "sensor_zone_upper_partS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.015, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "sensor_zone_lower_part_rectS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.015, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoXtru", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "moduleS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 134218752, - "fDX" : 3.15, - "fDY" : 6.30175, - "fDZ" : 0.015, - "fOrigin" : [0, 0, 0], - "fNvert" : 5, - "fNz" : 2, - "fZcurrent" : 0, - "fX" : [3.15, -3.15, -3.15, -0.67, 3.15], - "fY" : [6.30175, 6.30175, -6.30175, -6.30175, -2.48175], - "fZ" : [-0.015, 0.015], - "fScale" : [1, 1], - "fX0" : [0, 0], - "fY0" : [0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "sensor_zone_upper_partS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.015, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoXtru", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "sensor_zone_lower_part_bevelS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 134218752, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.015, - "fOrigin" : [0, 0, 0], - "fNvert" : 5, - "fNz" : 2, - "fZcurrent" : 0, - "fX" : [3.05, -3.05, -3.05, -0.711421356237309, 3.05], - "fY" : [3.05, 3.05, -3.05, -3.05, 0.71142135623731], - "fZ" : [-0.015, 0.015], - "fScale" : [1, 1], - "fX0" : [0, 0], - "fY0" : [0, 0] - }, { - "_typename" : "TGeoXtru", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "moduleS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 134218752, - "fDX" : 3.15, - "fDY" : 6.30175, - "fDZ" : 0.015, - "fOrigin" : [0, 0, 0], - "fNvert" : 5, - "fNz" : 2, - "fZcurrent" : 0, - "fX" : [3.15, -3.15, -3.15, -0.67, 3.15], - "fY" : [6.30175, 6.30175, -6.30175, -6.30175, -2.48175], - "fZ" : [-0.015, 0.015], - "fScale" : [1, 1], - "fX0" : [0, 0], - "fY0" : [0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "sensor_zone_upper_partS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.015, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoXtru", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "sensor_zone_lower_part_bevelS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 134218752, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.015, - "fOrigin" : [0, 0, 0], - "fNvert" : 5, - "fNz" : 2, - "fZcurrent" : 0, - "fX" : [3.05, -3.05, -3.05, -0.711421356237309, 3.05], - "fY" : [3.05, 3.05, -3.05, -3.05, 0.71142135623731], - "fZ" : [-0.015, 0.015], - "fScale" : [1, 1], - "fX0" : [0, 0], - "fY0" : [0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "moduleS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.15, - "fDY" : 6.30175, - "fDZ" : 0.015, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "sensor_zone_upper_partS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.015, - "fOrigin" : [0, 0, 0] - }, { - "_typename" : "TGeoBBox", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "sensor_zone_lower_part_rectS", - "fTitle" : "", - "fShapeId" : 256, - "fShapeBits" : 1024, - "fDX" : 3.05, - "fDY" : 3.05, - "fDZ" : 0.015, - "fOrigin" : [0, 0, 0] - }] - }, - "fVolumes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 59785216, - "fName" : "cave", - "fTitle" : "Top volume", - "fGeoAtt" : 3084, - "fLineColor" : 3, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Magnet_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolumeAssembly", - "fUniqueID" : 0, - "fBits" : 59785216, - "fName" : "Magnet", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 1, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Coil_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58736640, - "fName" : "Coil", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 4, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":849}, - "fMedium" : { - "_typename" : "TGeoMedium", - "fUniqueID" : 2, - "fBits" : 50331648, - "fName" : "copper", - "fTitle" : "", - "fId" : 2, - "fParams" : [0, 1, 20, -1, -1, -1, 0.001, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "fMaterial" : { - "_typename" : "TGeoMaterial", - "fUniqueID" : 2, - "fBits" : 50331648, - "fName" : "copper", - "fTitle" : "", - "fFillColor" : 19, - "fFillStyle" : 1001, - "fIndex" : 1, - "fA" : 63.54, - "fZ" : 29, - "fDensity" : 8.96, - "fRadLen" : 1.43502863740006, - "fIntLen" : 15.5141335257514, - "fTemperature" : 273.15, - "fPressure" : 632420000, - "fState" : 0, - "fShader" : null, - "fCerenkov" : null, - "fElement" : null - } - }, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 3, - "fNtotal" : 1, - "fRefCount" : 2 - }, - "fMother" : {"$ref":1261}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t3", - "fTitle" : "", - "fTranslation" : [0, -85, 0] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Coil_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1264}, - "fMother" : {"$ref":1261}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t3", - "fTitle" : "", - "fTranslation" : [0, 85, 0] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Pole_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58736640, - "fName" : "Pole", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":882}, - "fMedium" : { - "_typename" : "TGeoMedium", - "fUniqueID" : 3, - "fBits" : 50331648, - "fName" : "iron", - "fTitle" : "", - "fId" : 3, - "fParams" : [1, 1, 20, -1, -1, -1, 0.001, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "fMaterial" : { - "_typename" : "TGeoMaterial", - "fUniqueID" : 3, - "fBits" : 50331648, - "fName" : "iron", - "fTitle" : "", - "fFillColor" : 19, - "fFillStyle" : 1001, - "fIndex" : 2, - "fA" : 55.847, - "fZ" : 26, - "fDensity" : 7.87, - "fRadLen" : 1.75762222730907, - "fIntLen" : 16.9675125483994, - "fTemperature" : 273.15, - "fPressure" : 632420000, - "fState" : 0, - "fShader" : null, - "fCerenkov" : null, - "fElement" : null - } - }, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 4, - "fNtotal" : 1, - "fRefCount" : 2 - }, - "fMother" : {"$ref":1261}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 52822016, - "fName" : "c3", - "fTitle" : "", - "fTranslation" : [0, -84.25, 0], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 52690944, - "fName" : "", - "fTitle" : "", - "fRotationMatrix" : [1, 0, 0, 0, 0, 1, 0, -1, 0] - } - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Pole_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1271}, - "fMother" : {"$ref":1261}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 52822016, - "fName" : "c3", - "fTitle" : "", - "fTranslation" : [0, 84.25, 0], - "fRotation" : {"$ref":1275} - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Yoke_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "Yoke", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 6, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":878}, - "fMedium" : { - "_typename" : "TGeoMedium", - "fUniqueID" : 4, - "fBits" : 50331648, - "fName" : "steel", - "fTitle" : "", - "fId" : 4, - "fParams" : [0, 1, 30, -1, -1, -1, 0.001, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "fMaterial" : { - "_typename" : "TGeoMixture", - "fUniqueID" : 4, - "fBits" : 50462720, - "fName" : "steel", - "fTitle" : "", - "fFillColor" : 19, - "fFillStyle" : 1001, - "fIndex" : 3, - "fA" : 55.3021846147983, - "fZ" : 25.7733568999496, - "fDensity" : 8.02, - "fRadLen" : 1.73601610180003, - "fIntLen" : 16.5874229502559, - "fTemperature" : 273.15, - "fPressure" : 632420000, - "fState" : 0, - "fShader" : null, - "fCerenkov" : null, - "fElement" : null, - "fNelements" : 5, - "fZmixture" : [25, 14, 24, 28, 26], - "fAmixture" : [54.938, 28.09, 51.996, 58.693, 55.85], - "fWeights" : [0.0199389542374542, 0.00509743005324265, 0.179276379064425, 0.106508886477384, 0.689178350167495], - "fNatoms" : [], - "fVecNbOfAtomsPerVolume" : [], - "fElements" : null - } - }, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 5, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1261}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":4} - }] - }, - "fShape" : { - "_typename" : "TGeoShapeAssembly", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fShapeId" : 0, - "fShapeBits" : 1024, - "fDX" : 350, - "fDY" : 224, - "fDZ" : 257.1, - "fOrigin" : [0, 0, 0], - "fVolume" : {"$ref":1261}, - "fBBoxOK" : true - }, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 2, - "fNtotal" : 6, - "fRefCount" : 7 - }, - "fMother" : {"$ref":1258}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t3", - "fTitle" : "", - "fTranslation" : [0, 0, 124.5] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof700_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolumeAssembly", - "fUniqueID" : 0, - "fBits" : 59785216, - "fName" : "tof700", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 1, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2ChamberV0_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 59785216, - "fName" : "TOF2ChamberV0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 4, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2GlassVolumeV0_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58736640, - "fName" : "TOF2GlassVolumeV0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 7, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":883}, - "fMedium" : {"$ref":1143}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 7, - "fNtotal" : 1, - "fRefCount" : 2 - }, - "fMother" : {"$ref":1288}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":7} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2ActiveGasVolumeV0_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "TOF2ActiveGasVolumeV0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 1, - "fBits" : 58736640, - "fName" : "ActiveGasStrip", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":884}, - "fMedium" : {"$ref":1092}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 8, - "fNtotal" : 1, - "fRefCount" : 32 - }, - "fMother" : {"$ref":1293}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : -17.02578125, - "fIndex" : 0, - "fFinder" : { - "_typename" : "TGeoPatternY", - "fUniqueID" : 0, - "fBits" : 50331648, - "fStep" : 1.0984375, - "fStart" : -17.575, - "fEnd" : 17.575, - "fNdivisions" : 32, - "fDivIndex" : 0, - "fVolume" : {"$ref":1293} - } - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : -15.92734375, - "fIndex" : 1, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_3", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 3, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : -14.82890625, - "fIndex" : 2, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_4", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 4, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : -13.73046875, - "fIndex" : 3, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_5", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 5, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : -12.63203125, - "fIndex" : 4, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_6", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 6, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : -11.53359375, - "fIndex" : 5, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_7", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 7, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : -10.43515625, - "fIndex" : 6, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_8", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 8, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : -9.33671875, - "fIndex" : 7, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_9", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 9, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : -8.23828125, - "fIndex" : 8, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_10", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 10, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : -7.13984375, - "fIndex" : 9, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_11", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 11, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : -6.04140625, - "fIndex" : 10, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_12", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 12, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : -4.94296875, - "fIndex" : 11, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_13", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 13, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : -3.84453125, - "fIndex" : 12, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_14", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 14, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : -2.74609375, - "fIndex" : 13, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_15", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 15, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : -1.64765625, - "fIndex" : 14, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_16", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 16, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : -0.549218749999998, - "fIndex" : 15, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_17", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 17, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : 0.549218750000001, - "fIndex" : 16, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_18", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 18, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : 1.64765625, - "fIndex" : 17, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_19", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 19, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : 2.74609375, - "fIndex" : 18, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_20", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 20, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : 3.84453125, - "fIndex" : 19, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_21", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 21, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : 4.94296875, - "fIndex" : 20, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_22", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 22, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : 6.04140625, - "fIndex" : 21, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_23", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 23, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : 7.13984375, - "fIndex" : 22, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_24", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 24, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : 8.23828125, - "fIndex" : 23, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_25", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 25, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : 9.33671875, - "fIndex" : 24, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_26", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 26, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : 10.43515625, - "fIndex" : 25, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_27", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 27, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : 11.53359375, - "fIndex" : 26, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_28", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 28, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : 12.63203125, - "fIndex" : 27, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_29", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 29, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : 13.73046875, - "fIndex" : 28, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_30", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 30, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : 14.82890625, - "fIndex" : 29, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_31", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 31, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : 15.92734375, - "fIndex" : 30, - "fFinder" : {"$ref":1297} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_32", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1296}, - "fMother" : {"$ref":1293}, - "fNumber" : 32, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : 17.02578125, - "fIndex" : 31, - "fFinder" : {"$ref":1297} - }] - }, - "fShape" : {"$ref":885}, - "fMedium" : {"$ref":1092}, - "fFinder" : {"$ref":1297}, - "fVoxels" : null, - "fNumber" : 9, - "fNtotal" : 33, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1288}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "GasLayerPosTOF2_trans", - "fTitle" : "", - "fTranslation" : [0, 0, -0.128] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2GlassVolumeV0_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1291}, - "fMother" : {"$ref":1288}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":8} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2G10VolumeV0_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "TOF2G10VolumeV0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 3, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":886}, - "fMedium" : {"$ref":1148}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 10, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1288}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":9} - }] - }, - "fShape" : {"$ref":887}, - "fMedium" : { - "_typename" : "TGeoMedium", - "fUniqueID" : 8, - "fBits" : 50331648, - "fName" : "aluminium", - "fTitle" : "", - "fId" : 8, - "fParams" : [0, 1, 20, -1, -1, -1, 0.001, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "fMaterial" : { - "_typename" : "TGeoMaterial", - "fUniqueID" : 8, - "fBits" : 50331648, - "fName" : "aluminium", - "fTitle" : "", - "fFillColor" : 19, - "fFillStyle" : 1001, - "fIndex" : 7, - "fA" : 26.98, - "fZ" : 13, - "fDensity" : 2.7, - "fRadLen" : 8.87510465963777, - "fIntLen" : 38.8622319406182, - "fTemperature" : 273.15, - "fPressure" : 632420000, - "fState" : 0, - "fShader" : null, - "fCerenkov" : null, - "fElement" : null - } - }, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 11, - "fNtotal" : 37, - "fRefCount" : 25 - }, - "fMother" : {"$ref":1285}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "Module_1_PosTOF2_trans", - "fTitle" : "", - "fTranslation" : [86.1, 29.65, 605.9] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2ChamberV0_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1288}, - "fMother" : {"$ref":1285}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "Module_2_PosTOF2_trans", - "fTitle" : "", - "fTranslation" : [71.9, 29.65, 597.1] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2ChamberV0_3", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1288}, - "fMother" : {"$ref":1285}, - "fNumber" : 3, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "Module_3_PosTOF2_trans", - "fTitle" : "", - "fTranslation" : [55.8, 29.65, 605.9] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2ChamberV0_4", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1288}, - "fMother" : {"$ref":1285}, - "fNumber" : 4, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "Module_4_PosTOF2_trans", - "fTitle" : "", - "fTranslation" : [42.1, 29.65, 597.1] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2ChamberV0_5", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1288}, - "fMother" : {"$ref":1285}, - "fNumber" : 5, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "Module_5_PosTOF2_trans", - "fTitle" : "", - "fTranslation" : [25.7, 29.65, 605.9] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2ChamberV0_6", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1288}, - "fMother" : {"$ref":1285}, - "fNumber" : 6, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "Module_6_PosTOF2_trans", - "fTitle" : "", - "fTranslation" : [12.3, 29.65, 597.1] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2ChamberV0_7", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1288}, - "fMother" : {"$ref":1285}, - "fNumber" : 7, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "Module_7_PosTOF2_trans", - "fTitle" : "", - "fTranslation" : [-4.5, 27.15, 605.9] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2ChamberV0_8", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1288}, - "fMother" : {"$ref":1285}, - "fNumber" : 8, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "Module_8_PosTOF2_trans", - "fTitle" : "", - "fTranslation" : [88.2, -3.55, 635.9] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2ChamberV0_9", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1288}, - "fMother" : {"$ref":1285}, - "fNumber" : 9, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "Module_9_PosTOF2_trans", - "fTitle" : "", - "fTranslation" : [72.1, -4.35, 627.1] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2ChamberV0_10", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1288}, - "fMother" : {"$ref":1285}, - "fNumber" : 10, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "Module_10_PosTOF2_trans", - "fTitle" : "", - "fTranslation" : [58, -3.55, 635.9] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2ChamberV0_11", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1288}, - "fMother" : {"$ref":1285}, - "fNumber" : 11, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "Module_11_PosTOF2_trans", - "fTitle" : "", - "fTranslation" : [42.3, -4.35, 627.1] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2ChamberV0_12", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1288}, - "fMother" : {"$ref":1285}, - "fNumber" : 12, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "Module_12_PosTOF2_trans", - "fTitle" : "", - "fTranslation" : [27.8, -3.55, 635.9] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2ChamberV0_13", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1288}, - "fMother" : {"$ref":1285}, - "fNumber" : 13, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "Module_13_PosTOF2_trans", - "fTitle" : "", - "fTranslation" : [27.8, -3.55, 647] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2ChamberV0_14", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1288}, - "fMother" : {"$ref":1285}, - "fNumber" : 14, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "Module_14_PosTOF2_trans", - "fTitle" : "", - "fTranslation" : [12.5, -4.35, 627.1] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2ChamberV0_15", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1288}, - "fMother" : {"$ref":1285}, - "fNumber" : 15, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "Module_15_PosTOF2_trans", - "fTitle" : "", - "fTranslation" : [86, -36.45, 605.9] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2ChamberV0_16", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1288}, - "fMother" : {"$ref":1285}, - "fNumber" : 16, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "Module_16_PosTOF2_trans", - "fTitle" : "", - "fTranslation" : [71.9, -36.45, 597.1] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2ChamberV0_17", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1288}, - "fMother" : {"$ref":1285}, - "fNumber" : 17, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "Module_17_PosTOF2_trans", - "fTitle" : "", - "fTranslation" : [55.8, -36.45, 605.9] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2ChamberV0_18", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1288}, - "fMother" : {"$ref":1285}, - "fNumber" : 18, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "Module_18_PosTOF2_trans", - "fTitle" : "", - "fTranslation" : [42.1, -36.45, 597.1] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2ChamberV0_19", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1288}, - "fMother" : {"$ref":1285}, - "fNumber" : 19, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "Module_19_PosTOF2_trans", - "fTitle" : "", - "fTranslation" : [25.7, -36.45, 605.9] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2ChamberV0_20", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1288}, - "fMother" : {"$ref":1285}, - "fNumber" : 20, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "Module_20_PosTOF2_trans", - "fTitle" : "", - "fTranslation" : [12.3, -36.45, 597.1] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2ChamberV0_21", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1288}, - "fMother" : {"$ref":1285}, - "fNumber" : 21, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "Module_21_PosTOF2_trans", - "fTitle" : "", - "fTranslation" : [-4.5, -34.15, 605.9] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2ChamberV1_22", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 59785216, - "fName" : "TOF2ChamberV1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 4, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2GlassVolumeV1_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58736640, - "fName" : "TOF2GlassVolumeV1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 7, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":888}, - "fMedium" : {"$ref":1143}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 12, - "fNtotal" : 1, - "fRefCount" : 2 - }, - "fMother" : {"$ref":1377}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":7} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2ActiveGasVolumeV1_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "TOF2ActiveGasVolumeV1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 1, - "fBits" : 58736640, - "fName" : "ActiveGasStrip", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":890}, - "fMedium" : {"$ref":1092}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 8, - "fNtotal" : 1, - "fRefCount" : 16 - }, - "fMother" : {"$ref":1382}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : -14.2265625, - "fIndex" : 0, - "fFinder" : { - "_typename" : "TGeoPatternY", - "fUniqueID" : 0, - "fBits" : 50331648, - "fStep" : 1.896875, - "fStart" : -15.175, - "fEnd" : 15.175, - "fNdivisions" : 16, - "fDivIndex" : 0, - "fVolume" : {"$ref":1382} - } - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1385}, - "fMother" : {"$ref":1382}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : -12.3296875, - "fIndex" : 1, - "fFinder" : {"$ref":1386} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_3", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1385}, - "fMother" : {"$ref":1382}, - "fNumber" : 3, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : -10.4328125, - "fIndex" : 2, - "fFinder" : {"$ref":1386} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_4", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1385}, - "fMother" : {"$ref":1382}, - "fNumber" : 4, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : -8.5359375, - "fIndex" : 3, - "fFinder" : {"$ref":1386} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_5", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1385}, - "fMother" : {"$ref":1382}, - "fNumber" : 5, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : -6.6390625, - "fIndex" : 4, - "fFinder" : {"$ref":1386} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_6", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1385}, - "fMother" : {"$ref":1382}, - "fNumber" : 6, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : -4.7421875, - "fIndex" : 5, - "fFinder" : {"$ref":1386} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_7", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1385}, - "fMother" : {"$ref":1382}, - "fNumber" : 7, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : -2.8453125, - "fIndex" : 6, - "fFinder" : {"$ref":1386} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_8", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1385}, - "fMother" : {"$ref":1382}, - "fNumber" : 8, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : -0.948437499999999, - "fIndex" : 7, - "fFinder" : {"$ref":1386} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_9", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1385}, - "fMother" : {"$ref":1382}, - "fNumber" : 9, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : 0.948437500000001, - "fIndex" : 8, - "fFinder" : {"$ref":1386} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_10", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1385}, - "fMother" : {"$ref":1382}, - "fNumber" : 10, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : 2.8453125, - "fIndex" : 9, - "fFinder" : {"$ref":1386} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_11", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1385}, - "fMother" : {"$ref":1382}, - "fNumber" : 11, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : 4.7421875, - "fIndex" : 10, - "fFinder" : {"$ref":1386} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_12", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1385}, - "fMother" : {"$ref":1382}, - "fNumber" : 12, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : 6.6390625, - "fIndex" : 11, - "fFinder" : {"$ref":1386} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_13", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1385}, - "fMother" : {"$ref":1382}, - "fNumber" : 13, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : 8.5359375, - "fIndex" : 12, - "fFinder" : {"$ref":1386} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_14", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1385}, - "fMother" : {"$ref":1382}, - "fNumber" : 14, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : 10.4328125, - "fIndex" : 13, - "fFinder" : {"$ref":1386} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_15", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1385}, - "fMother" : {"$ref":1382}, - "fNumber" : 15, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : 12.3296875, - "fIndex" : 14, - "fFinder" : {"$ref":1386} - }, { - "_typename" : "TGeoNodeOffset", - "fUniqueID" : 0, - "fBits" : 50364416, - "fName" : "ActiveGasStrip_16", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1385}, - "fMother" : {"$ref":1382}, - "fNumber" : 16, - "fNovlp" : 0, - "fOverlaps" : [], - "fOffset" : 14.2265625, - "fIndex" : 15, - "fFinder" : {"$ref":1386} - }] - }, - "fShape" : {"$ref":889}, - "fMedium" : {"$ref":1092}, - "fFinder" : {"$ref":1386}, - "fVoxels" : null, - "fNumber" : 13, - "fNtotal" : 17, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1377}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":1329} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2GlassVolumeV1_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1380}, - "fMother" : {"$ref":1377}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":8} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2G10VolumeV1_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "TOF2G10VolumeV1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 3, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":891}, - "fMedium" : {"$ref":1148}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 14, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1377}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":9} - }] - }, - "fShape" : {"$ref":892}, - "fMedium" : {"$ref":1333}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 15, - "fNtotal" : 21, - "fRefCount" : 7 - }, - "fMother" : {"$ref":1285}, - "fNumber" : 22, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "Module_22_PosTOF2_trans", - "fTitle" : "", - "fTranslation" : [120.3, 25.15, 597.1] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2ChamberV1_23", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1377}, - "fMother" : {"$ref":1285}, - "fNumber" : 23, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "Module_23_PosTOF2_trans", - "fTitle" : "", - "fTranslation" : [120.5, -4.25, 627.1] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF2ChamberV1_24", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1377}, - "fMother" : {"$ref":1285}, - "fNumber" : 24, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "Module_24_PosTOF2_trans", - "fTitle" : "", - "fTranslation" : [120.3, -31.95, 597.1] - } - }] - }, - "fShape" : { - "_typename" : "TGeoShapeAssembly", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fShapeId" : 0, - "fShapeBits" : 1024, - "fDX" : 82.001, - "fDY" : 52.126, - "fDZ" : 25.791, - "fOrigin" : [68, -3.4, 622.05], - "fVolume" : {"$ref":1285}, - "fBBoxOK" : true - }, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 6, - "fNtotal" : 841, - "fRefCount" : 26 - }, - "fMother" : {"$ref":1258}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":842} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VETO_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 59768832, - "fName" : "VETO", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 59785216, - "fName" : "VMDL", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 7, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VFEL_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 59785216, - "fName" : "VFEL", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 7, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VRFL_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "VRFL", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":898}, - "fMedium" : { - "_typename" : "TGeoMedium", - "fUniqueID" : 15, - "fBits" : 50331648, - "fName" : "PLASTIC", - "fTitle" : "", - "fId" : 15, - "fParams" : [0, 1, 0.19, 1, -1, -1, 0.001, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "fMaterial" : { - "_typename" : "TGeoMixture", - "fUniqueID" : 15, - "fBits" : 50462720, - "fName" : "PLASTIC", - "fTitle" : "", - "fFillColor" : 19, - "fFillStyle" : 1001, - "fIndex" : 14, - "fA" : 11.158100787, - "fZ" : 5.61284345, - "fDensity" : 1.032, - "fRadLen" : 42.0401716084694, - "fIntLen" : 70.7393809758668, - "fTemperature" : 273.15, - "fPressure" : 632420000, - "fState" : 0, - "fShader" : null, - "fCerenkov" : null, - "fElement" : null, - "fNelements" : 2, - "fZmixture" : [6, 1], - "fAmixture" : [12.01, 1.008], - "fWeights" : [0.9225687, 0.07743125], - "fNatoms" : [], - "fVecNbOfAtomsPerVolume" : [], - "fElements" : null - } - }, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 21, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1418}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":11} - }] - }, - "fShape" : {"$ref":895}, - "fMedium" : {"$ref":944}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 18, - "fNtotal" : 2, - "fRefCount" : 3 - }, - "fMother" : {"$ref":1415}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":13} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VFEL_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1418}, - "fMother" : {"$ref":1415}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":14} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 59785216, - "fName" : "VSCL", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 3, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VRSL_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "VRSL", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":900}, - "fMedium" : {"$ref":1422}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 23, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1426}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":18} - }] - }, - "fShape" : {"$ref":897}, - "fMedium" : { - "_typename" : "TGeoMedium", - "fUniqueID" : 13, - "fBits" : 50331648, - "fName" : "PLASTIC", - "fTitle" : "", - "fId" : 13, - "fParams" : [1, 0, 0, 1, -1, -1, 0.001, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "fMaterial" : {"$ref":1423} - }, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 20, - "fNtotal" : 2, - "fRefCount" : 67 - }, - "fMother" : {"$ref":1415}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":17} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 59785216, - "fName" : "VPBL", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 4, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VRPL_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "VRPL", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":899}, - "fMedium" : {"$ref":1422}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 22, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1432}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":20} - }] - }, - "fShape" : {"$ref":896}, - "fMedium" : { - "_typename" : "TGeoMedium", - "fUniqueID" : 14, - "fBits" : 50331648, - "fName" : "LEAD", - "fTitle" : "", - "fId" : 14, - "fParams" : [0, 0, 0, 1, -1, -1, 0.001, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "fMaterial" : { - "_typename" : "TGeoMaterial", - "fUniqueID" : 10, - "fBits" : 50462720, - "fName" : "LEAD", - "fTitle" : "", - "fFillColor" : 19, - "fFillStyle" : 1001, - "fIndex" : 9, - "fA" : 207.19, - "fZ" : 82, - "fDensity" : 11.35, - "fRadLen" : 0.561704911574565, - "fIntLen" : 18.2591661751475, - "fTemperature" : 273.15, - "fPressure" : 632420000, - "fState" : 0, - "fShader" : null, - "fCerenkov" : null, - "fElement" : null - } - }, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 19, - "fNtotal" : 2, - "fRefCount" : 67 - }, - "fMother" : {"$ref":1415}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":19} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":24} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":25} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_3", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 3, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":28} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_3", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 3, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":29} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_4", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 4, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":32} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_4", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 4, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":33} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_5", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 5, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":36} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_5", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 5, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":37} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_6", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 6, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":40} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_6", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 6, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":41} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_7", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 7, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":44} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_7", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 7, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":45} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_8", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 8, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":48} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_8", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 8, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":49} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_9", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 9, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":52} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_9", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 9, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":53} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_10", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 10, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":56} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_10", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 10, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":57} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_11", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 11, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":60} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_11", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 11, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":61} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_12", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 12, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":64} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_12", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 12, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":65} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_13", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 13, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":68} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_13", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 13, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":69} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_14", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 14, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":72} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_14", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 14, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":73} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_15", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 15, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":76} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_15", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 15, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":77} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_16", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 16, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":80} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_16", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 16, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":81} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_17", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 17, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":84} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_17", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 17, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":85} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_18", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 18, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":88} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_18", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 18, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":89} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_19", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 19, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":92} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_19", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 19, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":93} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_20", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 20, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":96} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_20", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 20, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":97} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_21", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 21, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":100} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_21", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 21, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":101} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_22", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 22, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":104} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_22", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 22, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":105} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_23", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 23, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":108} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_23", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 23, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":109} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_24", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 24, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":112} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_24", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 24, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":113} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_25", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 25, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":116} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_25", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 25, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":117} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_26", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 26, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":120} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_26", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 26, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":121} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_27", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 27, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":124} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_27", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 27, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":125} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_28", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 28, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":128} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_28", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 28, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":129} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_29", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 29, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":132} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_29", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 29, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":133} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_30", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 30, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":136} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_30", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 30, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":137} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_31", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 31, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":140} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_31", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 31, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":141} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_32", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 32, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":144} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_32", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 32, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":145} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_33", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 33, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":148} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_33", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 33, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":149} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_34", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 34, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":152} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_34", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 34, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":153} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_35", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 35, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":156} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_35", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 35, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":157} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_36", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 36, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":160} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_36", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 36, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":161} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_37", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 37, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":164} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_37", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 37, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":165} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_38", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 38, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":168} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_38", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 38, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":169} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_39", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 39, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":172} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_39", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 39, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":173} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_40", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 40, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":176} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_40", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 40, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":177} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_41", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 41, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":180} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_41", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 41, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":181} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_42", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 42, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":184} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_42", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 42, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":185} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_43", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 43, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":188} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_43", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 43, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":189} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_44", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 44, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":192} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_44", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 44, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":193} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_45", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 45, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":196} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_45", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 45, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":197} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_46", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 46, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":200} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_46", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 46, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":201} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_47", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 47, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":204} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_47", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 47, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":205} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_48", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 48, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":208} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_48", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 48, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":209} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_49", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 49, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":212} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_49", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 49, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":213} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_50", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 50, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":216} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_50", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 50, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":217} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_51", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 51, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":220} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_51", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 51, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":221} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_52", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 52, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":224} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_52", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 52, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":225} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_53", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 53, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":228} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_53", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 53, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":229} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_54", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 54, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":232} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_54", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 54, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":233} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_55", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 55, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":236} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_55", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 55, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":237} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_56", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 56, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":240} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_56", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 56, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":241} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_57", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 57, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":244} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_57", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 57, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":245} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_58", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 58, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":248} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_58", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 58, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":249} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_59", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 59, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":252} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_59", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 59, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":253} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_60", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 60, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":256} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_60", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 60, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":257} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_61", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 61, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":260} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_61", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 61, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":261} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_62", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 62, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":264} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_62", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 62, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":265} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_63", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 63, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":268} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_63", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 63, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":269} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_64", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 64, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":272} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_64", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 64, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":273} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_65", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 65, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":276} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_65", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 65, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":277} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VSCL_66", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1426}, - "fMother" : {"$ref":1415}, - "fNumber" : 66, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":280} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VPBL_66", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1432}, - "fMother" : {"$ref":1415}, - "fNumber" : 66, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":281} - }] - }, - "fShape" : {"$ref":894}, - "fMedium" : {"$ref":944}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 17, - "fNtotal" : 269, - "fRefCount" : 202 - }, - "fMother" : {"$ref":1412}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":284} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":285} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_3", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 3, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":286} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_4", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 4, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":287} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_5", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 5, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":288} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_6", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 6, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":289} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_7", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 7, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":290} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_8", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 8, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":291} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_9", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 9, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":292} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_10", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 10, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":293} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_11", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 11, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":294} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_12", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 12, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":295} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_13", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 13, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":296} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_14", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 14, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":297} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_15", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 15, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":298} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_16", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 16, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":299} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_17", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 17, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":300} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_18", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 18, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":301} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_19", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 19, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":302} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_20", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 20, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":303} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_21", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 21, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":304} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_22", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 22, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":305} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_23", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 23, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":306} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_24", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 24, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":307} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_25", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 25, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":308} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_26", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 26, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":309} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 59785216, - "fName" : "UMDL", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 7, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UFEL_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 59785216, - "fName" : "UFEL", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 7, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "URFL_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "URFL", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":906}, - "fMedium" : {"$ref":1422}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 29, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1597}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":12} - }] - }, - "fShape" : {"$ref":905}, - "fMedium" : {"$ref":944}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 28, - "fNtotal" : 2, - "fRefCount" : 3 - }, - "fMother" : {"$ref":1594}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":15} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UFEL_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1597}, - "fMother" : {"$ref":1594}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":16} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 59785216, - "fName" : "USCL", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 3, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "URSL_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "URSL", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":903}, - "fMedium" : {"$ref":1422}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 26, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1603}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":22} - }] - }, - "fShape" : {"$ref":902}, - "fMedium" : {"$ref":1430}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 25, - "fNtotal" : 2, - "fRefCount" : 67 - }, - "fMother" : {"$ref":1594}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":21} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58736640, - "fName" : "UPBL", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 4, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":904}, - "fMedium" : {"$ref":1436}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 27, - "fNtotal" : 1, - "fRefCount" : 66 - }, - "fMother" : {"$ref":1594}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":23} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":26} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":27} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_3", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 3, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":30} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_3", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 3, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":31} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_4", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 4, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":34} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_4", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 4, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":35} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_5", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 5, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":38} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_5", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 5, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":39} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_6", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 6, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":42} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_6", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 6, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":43} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_7", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 7, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":46} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_7", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 7, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":47} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_8", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 8, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":50} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_8", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 8, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":51} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_9", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 9, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":54} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_9", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 9, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":55} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_10", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 10, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":58} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_10", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 10, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":59} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_11", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 11, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":62} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_11", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 11, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":63} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_12", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 12, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":66} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_12", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 12, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":67} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_13", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 13, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":70} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_13", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 13, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":71} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_14", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 14, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":74} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_14", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 14, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":75} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_15", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 15, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":78} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_15", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 15, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":79} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_16", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 16, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":82} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_16", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 16, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":83} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_17", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 17, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":86} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_17", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 17, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":87} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_18", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 18, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":90} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_18", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 18, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":91} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_19", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 19, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":94} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_19", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 19, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":95} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_20", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 20, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":98} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_20", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 20, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":99} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_21", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 21, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":102} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_21", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 21, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":103} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_22", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 22, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":106} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_22", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 22, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":107} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_23", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 23, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":110} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_23", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 23, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":111} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_24", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 24, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":114} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_24", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 24, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":115} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_25", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 25, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":118} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_25", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 25, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":119} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_26", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 26, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":122} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_26", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 26, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":123} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_27", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 27, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":126} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_27", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 27, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":127} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_28", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 28, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":130} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_28", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 28, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":131} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_29", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 29, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":134} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_29", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 29, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":135} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_30", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 30, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":138} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_30", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 30, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":139} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_31", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 31, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":142} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_31", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 31, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":143} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_32", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 32, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":146} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_32", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 32, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":147} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_33", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 33, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":150} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_33", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 33, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":151} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_34", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 34, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":154} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_34", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 34, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":155} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_35", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 35, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":158} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_35", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 35, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":159} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_36", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 36, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":162} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_36", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 36, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":163} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_37", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 37, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":166} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_37", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 37, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":167} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_38", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 38, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":170} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_38", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 38, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":171} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_39", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 39, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":174} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_39", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 39, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":175} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_40", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 40, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":178} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_40", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 40, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":179} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_41", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 41, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":182} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_41", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 41, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":183} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_42", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 42, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":186} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_42", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 42, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":187} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_43", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 43, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":190} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_43", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 43, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":191} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_44", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 44, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":194} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_44", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 44, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":195} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_45", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 45, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":198} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_45", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 45, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":199} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_46", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 46, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":202} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_46", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 46, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":203} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_47", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 47, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":206} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_47", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 47, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":207} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_48", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 48, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":210} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_48", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 48, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":211} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_49", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 49, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":214} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_49", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 49, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":215} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_50", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 50, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":218} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_50", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 50, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":219} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_51", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 51, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":222} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_51", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 51, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":223} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_52", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 52, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":226} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_52", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 52, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":227} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_53", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 53, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":230} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_53", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 53, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":231} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_54", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 54, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":234} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_54", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 54, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":235} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_55", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 55, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":238} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_55", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 55, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":239} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_56", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 56, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":242} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_56", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 56, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":243} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_57", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 57, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":246} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_57", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 57, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":247} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_58", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 58, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":250} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_58", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 58, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":251} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_59", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 59, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":254} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_59", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 59, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":255} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_60", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 60, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":258} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_60", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 60, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":259} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_61", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 61, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":262} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_61", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 61, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":263} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_62", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 62, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":266} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_62", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 62, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":267} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_63", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 63, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":270} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_63", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 63, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":271} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_64", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 64, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":274} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_64", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 64, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":275} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_65", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 65, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":278} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_65", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 65, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":279} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "USCL_66", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1603}, - "fMother" : {"$ref":1594}, - "fNumber" : 66, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":282} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UPBL_66", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1608}, - "fMother" : {"$ref":1594}, - "fNumber" : 66, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":283} - }] - }, - "fShape" : {"$ref":901}, - "fMedium" : {"$ref":944}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 24, - "fNtotal" : 203, - "fRefCount" : 166 - }, - "fMother" : {"$ref":1412}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":310} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":311} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_3", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 3, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":312} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_4", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 4, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":313} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_5", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 5, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":314} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_6", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 6, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":315} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_7", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 7, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":316} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_8", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 8, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":317} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_9", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 9, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":318} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_10", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 10, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":319} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_11", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 11, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":320} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_12", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 12, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":321} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_27", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 27, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":322} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_28", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 28, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":323} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_29", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 29, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":324} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_30", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 30, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":325} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_31", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 31, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":326} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_32", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 32, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":327} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_33", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 33, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":328} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_34", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 34, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":329} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_13", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 13, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":330} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_14", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 14, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":331} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_15", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 15, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":332} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_16", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 16, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":333} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_17", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 17, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":334} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_19", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 19, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":335} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_22", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 22, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":336} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_24", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 24, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":337} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_35", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 35, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":338} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_36", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 36, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":339} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_37", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 37, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":340} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_38", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 38, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":341} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_39", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 39, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":342} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_40", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 40, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":343} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_41", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 41, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":344} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_42", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 42, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":345} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_25", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 25, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":346} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_26", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 26, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":347} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_27", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 27, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":348} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_28", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 28, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":349} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_29", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 29, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":350} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_30", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 30, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":351} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_31", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 31, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":352} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_32", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 32, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":353} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_33", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 33, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":354} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_34", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 34, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":355} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_35", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 35, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":356} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "UMDL_36", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1594}, - "fMother" : {"$ref":1412}, - "fNumber" : 36, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":357} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_43", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 43, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":358} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_44", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 44, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":359} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_45", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 45, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":360} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_46", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 46, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":361} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_47", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 47, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":362} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_48", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 48, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":363} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_49", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 49, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":364} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_50", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 50, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":365} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_51", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 51, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":366} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_52", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 52, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":367} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_53", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 53, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":368} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_54", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 54, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":369} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_55", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 55, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":370} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_56", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 56, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":371} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_57", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 57, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":372} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_58", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 58, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":373} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_59", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 59, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":374} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_60", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 60, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":375} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_61", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 61, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":376} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_62", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 62, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":377} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_63", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 63, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":378} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_64", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 64, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":379} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_65", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 65, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":380} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_66", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 66, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":381} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_67", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 67, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":382} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "VMDL_68", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1415}, - "fMother" : {"$ref":1412}, - "fNumber" : 68, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":383} - }] - }, - "fShape" : {"$ref":893}, - "fMedium" : { - "_typename" : "TGeoMedium", - "fUniqueID" : 9, - "fBits" : 50331648, - "fName" : "AIR", - "fTitle" : "", - "fId" : 9, - "fParams" : [0, 1, 0.19, 0.25, -1, -1, 0.001, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "fMaterial" : { - "_typename" : "TGeoMaterial", - "fUniqueID" : 11, - "fBits" : 50462720, - "fName" : "AIR", - "fTitle" : "", - "fFillColor" : 19, - "fFillStyle" : 1001, - "fIndex" : 10, - "fA" : 14.61, - "fZ" : 7.3, - "fDensity" : 0.001205, - "fRadLen" : 30412.608512906, - "fIntLen" : 70037.7174700344, - "fTemperature" : 273.15, - "fPressure" : 632420000, - "fState" : 0, - "fShader" : null, - "fCerenkov" : null, - "fElement" : null - } - }, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 16, - "fNtotal" : 24789, - "fRefCount" : 101 - }, - "fMother" : {"$ref":1258}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":10} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "GEMS_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolumeAssembly", - "fUniqueID" : 0, - "fBits" : 59785216, - "fName" : "GEMS", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 1, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "station0_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":940}, - "fMother" : {"$ref":1815}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t383", - "fTitle" : "", - "fTranslation" : [-1.5, -4.5, 32.7], - "fRotation" : null - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "station1_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":960}, - "fMother" : {"$ref":1815}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t389", - "fTitle" : "", - "fTranslation" : [-1.5, -4.5, 64.5], - "fRotation" : null - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "station2_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":980}, - "fMother" : {"$ref":1815}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t395", - "fTitle" : "", - "fTranslation" : [-1.5, -4.5, 96.5], - "fRotation" : null - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "station3_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1010}, - "fMother" : {"$ref":1815}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t401", - "fTitle" : "", - "fTranslation" : [0, -4.5, 128.5], - "fRotation" : null - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "station4_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1043}, - "fMother" : {"$ref":1815}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t413", - "fTitle" : "", - "fTranslation" : [0, -6.9, 161.1], - "fRotation" : null - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "station5_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1076}, - "fMother" : {"$ref":1815}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t423", - "fTitle" : "", - "fTranslation" : [0, -6.9, 193.1], - "fRotation" : null - } - }] - }, - "fShape" : { - "_typename" : "TGeoShapeAssembly", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fShapeId" : 0, - "fShapeBits" : 1024, - "fDX" : 86.6, - "fDY" : 26.55, - "fDZ" : 81.75, - "fOrigin" : [0, -6.6, 113.75], - "fVolume" : {"$ref":1815}, - "fBBoxOK" : true - }, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 30, - "fNtotal" : 57, - "fRefCount" : 8 - }, - "fMother" : {"$ref":1258}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":838} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "TOF400_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolumeAssembly", - "fUniqueID" : 0, - "fBits" : 59785216, - "fName" : "TOF400", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 1, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1Detector_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1088}, - "fMother" : {"$ref":1831}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t1", - "fTitle" : "", - "fTranslation" : [54.4, 54, 458.66] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1Detector_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1088}, - "fMother" : {"$ref":1831}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t1", - "fTitle" : "", - "fTranslation" : [54.4, 27, 454.8] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1Detector_3", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1088}, - "fMother" : {"$ref":1831}, - "fNumber" : 3, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t1", - "fTitle" : "", - "fTranslation" : [54.4, 0, 458.66] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1Detector_4", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1088}, - "fMother" : {"$ref":1831}, - "fNumber" : 4, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t1", - "fTitle" : "", - "fTranslation" : [54.4, -27, 454.8] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1Detector_5", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1088}, - "fMother" : {"$ref":1831}, - "fNumber" : 5, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t1", - "fTitle" : "", - "fTranslation" : [54.4, -54, 458.66] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1Detector_6", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1088}, - "fMother" : {"$ref":1831}, - "fNumber" : 6, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t1", - "fTitle" : "", - "fTranslation" : [54.4, 54, 446.46] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1Detector_7", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1088}, - "fMother" : {"$ref":1831}, - "fNumber" : 7, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t1", - "fTitle" : "", - "fTranslation" : [54.4, 27, 442.6] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1Detector_8", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1088}, - "fMother" : {"$ref":1831}, - "fNumber" : 8, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t1", - "fTitle" : "", - "fTranslation" : [54.4, 0, 446.46] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1Detector_9", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1088}, - "fMother" : {"$ref":1831}, - "fNumber" : 9, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t1", - "fTitle" : "", - "fTranslation" : [54.4, -27, 442.6] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tof1Detector_10", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1088}, - "fMother" : {"$ref":1831}, - "fNumber" : 10, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t1", - "fTitle" : "", - "fTranslation" : [54.4, -54, 446.46] - } - }] - }, - "fShape" : { - "_typename" : "TGeoShapeAssembly", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fShapeId" : 0, - "fShapeBits" : 1024, - "fDX" : 30, - "fDY" : 69, - "fDZ" : 9.53, - "fOrigin" : [54.4, 0, 450.63], - "fVolume" : {"$ref":1831}, - "fBBoxOK" : true - }, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 77, - "fNtotal" : 531, - "fRefCount" : 12 - }, - "fMother" : {"$ref":1258}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52428800, - "fName" : "tw", - "fTitle" : "", - "fTranslation" : [0, 0, 0] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "DCH_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolumeAssembly", - "fUniqueID" : 0, - "fBits" : 59785216, - "fName" : "DCH", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 1, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "DCHDetV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 59785216, - "fName" : "DCHDetV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 3, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "DCHActivePlaneV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58736640, - "fName" : "DCHActivePlaneV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 7, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1151}, - "fMedium" : {"$ref":964}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 83, - "fNtotal" : 1, - "fRefCount" : 8 - }, - "fMother" : {"$ref":1859}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":490} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "DCHActivePlaneV_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1862}, - "fMother" : {"$ref":1859}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":491} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "DCHActivePlaneV_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1862}, - "fMother" : {"$ref":1859}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":492} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "DCHActivePlaneV_3", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1862}, - "fMother" : {"$ref":1859}, - "fNumber" : 3, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":493} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "DCHActivePlaneV_4", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1862}, - "fMother" : {"$ref":1859}, - "fNumber" : 4, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":494} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "DCHActivePlaneV_5", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1862}, - "fMother" : {"$ref":1859}, - "fNumber" : 5, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":495} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "DCHActivePlaneV_6", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1862}, - "fMother" : {"$ref":1859}, - "fNumber" : 6, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":496} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "DCHActivePlaneV_7", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1862}, - "fMother" : {"$ref":1859}, - "fNumber" : 7, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":497} - }] - }, - "fShape" : {"$ref":1152}, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 84, - "fNtotal" : 9, - "fRefCount" : 10 - }, - "fMother" : {"$ref":1856}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 52822016, - "fName" : "c485", - "fTitle" : "", - "fTranslation" : [0, 0, 514], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 52690944, - "fName" : "rot", - "fTitle" : "", - "fRotationMatrix" : [0.923879532511287, -0.38268343236509, 0, 0.38268343236509, 0.923879532511287, -0, 0, 0, 1] - } - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "DCHDetV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1859}, - "fMother" : {"$ref":1856}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 52822016, - "fName" : "c493", - "fTitle" : "", - "fTranslation" : [0, 0, 713], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 52690944, - "fName" : "rot", - "fTitle" : "", - "fRotationMatrix" : [0.923879532511287, -0.38268343236509, 0, 0.38268343236509, 0.923879532511287, -0, 0, 0, 1] - } - } - }] - }, - "fShape" : { - "_typename" : "TGeoShapeAssembly", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fShapeId" : 0, - "fShapeBits" : 1024, - "fDX" : 204.834692374119, - "fDY" : 204.834692374119, - "fDZ" : 112.75, - "fOrigin" : [0, 0, 613.5], - "fVolume" : {"$ref":1856}, - "fBBoxOK" : true - }, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 82, - "fNtotal" : 19, - "fRefCount" : 4 - }, - "fMother" : {"$ref":1258}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":843} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "MWPC_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolumeAssembly", - "fUniqueID" : 0, - "fBits" : 59785216, - "fName" : "MWPC", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 1, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "MWPCContainerV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 59785216, - "fName" : "MWPCContainerV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 3, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "MWPCActivePlaneV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58736640, - "fName" : "MWPCActivePlaneV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 7, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1154}, - "fMedium" : {"$ref":964}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 86, - "fNtotal" : 1, - "fRefCount" : 6 - }, - "fMother" : {"$ref":1880}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":498} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "MWPCActivePlaneV_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1883}, - "fMother" : {"$ref":1880}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":499} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "MWPCActivePlaneV_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1883}, - "fMother" : {"$ref":1880}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":501} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "MWPCActivePlaneV_3", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1883}, - "fMother" : {"$ref":1880}, - "fNumber" : 3, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":503} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "MWPCActivePlaneV_4", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1883}, - "fMother" : {"$ref":1880}, - "fNumber" : 4, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":505} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "MWPCActivePlaneV_5", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1883}, - "fMother" : {"$ref":1880}, - "fNumber" : 5, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":507} - }] - }, - "fShape" : {"$ref":1153}, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 87, - "fNtotal" : 7, - "fRefCount" : 8 - }, - "fMother" : {"$ref":1877}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "DetPos0_trans", - "fTitle" : "", - "fTranslation" : [0, 0, -362.41265] - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "MWPCContainerV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1880}, - "fMother" : {"$ref":1877}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "DetPos1_trans", - "fTitle" : "", - "fTranslation" : [0, 0, -212.63755] - } - }] - }, - "fShape" : { - "_typename" : "TGeoShapeAssembly", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fShapeId" : 0, - "fShapeBits" : 1024, - "fDX" : 26.15396719429, - "fDY" : 26.15396719429, - "fDZ" : 78.39205, - "fOrigin" : [0, 0, -287.5251], - "fVolume" : {"$ref":1877}, - "fBBoxOK" : true - }, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 85, - "fNtotal" : 15, - "fRefCount" : 4 - }, - "fMother" : {"$ref":1258}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":844} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 59785216, - "fName" : "ecal01", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 3, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 59785216, - "fName" : "ecal01mod", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 3, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01front_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "ecal01front", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 6, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1157}, - "fMedium" : {"$ref":1280}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 90, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1897}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":511} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 59785216, - "fName" : "ecal01lay", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 3, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lead_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "ecal01lead", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 3, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1159}, - "fMedium" : {"$ref":1430}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 92, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":1902}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":513} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01scint_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58736640, - "fName" : "ecal01scint", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 4, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1160}, - "fMedium" : { - "_typename" : "TGeoMedium", - "fUniqueID" : 20, - "fBits" : 50331648, - "fName" : "FscScint", - "fTitle" : "", - "fId" : 20, - "fParams" : [1, 1, 20, -1, -1, -1, 1e-4, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "fMaterial" : { - "_typename" : "TGeoMixture", - "fUniqueID" : 20, - "fBits" : 50462720, - "fName" : "FscScint", - "fTitle" : "", - "fFillColor" : 19, - "fFillStyle" : 1001, - "fIndex" : 19, - "fA" : 11.0715201827875, - "fZ" : 5.57349581111957, - "fDensity" : 1.032, - "fRadLen" : 42.1299811568047, - "fIntLen" : 70.0999370078305, - "fTemperature" : 273.15, - "fPressure" : 632420000, - "fState" : 0, - "fShader" : null, - "fCerenkov" : null, - "fElement" : null, - "fNelements" : 2, - "fZmixture" : [6, 1], - "fAmixture" : [12.01, 1.008], - "fWeights" : [0.914699162223915, 0.0853008377760853], - "fNatoms" : [], - "fVecNbOfAtomsPerVolume" : [], - "fElements" : null - } - }, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 93, - "fNtotal" : 1, - "fRefCount" : 9 - }, - "fMother" : {"$ref":1902}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":514} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01scint_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1907}, - "fMother" : {"$ref":1902}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":515} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01scint_3", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1907}, - "fMother" : {"$ref":1902}, - "fNumber" : 3, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":516} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01scint_4", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1907}, - "fMother" : {"$ref":1902}, - "fNumber" : 4, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":517} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01scint_5", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1907}, - "fMother" : {"$ref":1902}, - "fNumber" : 5, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":518} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01scint_6", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1907}, - "fMother" : {"$ref":1902}, - "fNumber" : 6, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":519} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01scint_7", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1907}, - "fMother" : {"$ref":1902}, - "fNumber" : 7, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":520} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01scint_8", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1907}, - "fMother" : {"$ref":1902}, - "fNumber" : 8, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":521} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01scint_9", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1907}, - "fMother" : {"$ref":1902}, - "fNumber" : 9, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":522} - }] - }, - "fShape" : {"$ref":1158}, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 91, - "fNtotal" : 11, - "fRefCount" : 230 - }, - "fMother" : {"$ref":1897}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":512} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":523} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_3", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 3, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":524} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_4", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 4, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":525} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_5", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 5, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":526} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_6", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 6, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":527} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_7", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 7, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":528} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_8", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 8, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":529} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_9", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 9, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":530} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_10", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 10, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":531} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_11", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 11, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":532} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_12", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 12, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":533} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_13", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 13, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":534} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_14", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 14, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":535} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_15", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 15, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":536} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_16", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 16, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":537} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_17", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 17, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":538} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_18", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 18, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":539} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_19", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 19, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":540} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_20", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 20, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":541} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_21", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 21, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":542} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_22", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 22, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":543} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_23", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 23, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":544} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_24", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 24, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":545} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_25", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 25, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":546} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_26", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 26, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":547} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_27", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 27, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":548} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_28", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 28, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":549} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_29", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 29, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":550} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_30", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 30, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":551} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_31", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 31, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":552} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_32", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 32, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":553} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_33", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 33, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":554} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_34", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 34, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":555} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_35", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 35, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":556} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_36", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 36, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":557} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_37", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 37, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":558} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_38", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 38, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":559} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_39", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 39, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":560} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_40", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 40, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":561} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_41", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 41, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":562} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_42", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 42, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":563} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_43", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 43, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":564} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_44", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 44, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":565} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_45", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 45, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":566} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_46", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 46, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":567} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_47", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 47, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":568} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_48", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 48, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":569} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_49", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 49, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":570} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_50", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 50, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":571} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_51", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 51, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":572} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_52", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 52, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":573} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_53", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 53, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":574} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_54", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 54, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":575} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_55", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 55, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":576} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_56", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 56, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":577} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_57", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 57, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":578} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_58", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 58, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":579} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_59", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 59, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":580} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_60", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 60, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":581} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_61", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 61, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":582} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_62", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 62, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":583} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_63", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 63, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":584} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_64", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 64, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":585} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_65", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 65, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":586} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_66", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 66, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":587} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_67", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 67, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":588} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_68", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 68, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":589} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_69", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 69, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":590} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_70", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 70, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":591} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_71", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 71, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":592} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_72", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 72, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":593} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_73", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 73, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":594} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_74", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 74, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":595} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_75", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 75, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":596} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_76", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 76, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":597} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_77", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 77, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":598} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_78", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 78, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":599} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_79", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 79, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":600} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_80", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 80, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":601} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_81", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 81, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":602} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_82", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 82, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":603} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_83", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 83, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":604} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_84", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 84, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":605} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_85", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 85, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":606} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_86", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 86, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":607} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_87", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 87, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":608} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_88", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 88, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":609} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_89", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 89, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":610} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_90", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 90, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":611} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_91", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 91, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":612} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_92", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 92, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":613} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_93", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 93, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":614} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_94", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 94, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":615} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_95", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 95, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":616} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_96", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 96, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":617} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_97", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 97, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":618} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_98", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 98, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":619} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_99", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 99, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":620} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_100", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 100, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":621} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_101", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 101, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":622} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_102", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 102, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":623} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_103", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 103, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":624} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_104", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 104, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":625} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_105", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 105, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":626} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_106", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 106, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":627} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_107", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 107, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":628} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_108", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 108, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":629} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_109", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 109, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":630} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_110", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 110, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":631} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_111", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 111, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":632} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_112", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 112, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":633} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_113", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 113, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":634} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_114", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 114, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":635} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_115", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 115, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":636} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_116", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 116, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":637} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_117", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 117, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":638} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_118", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 118, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":639} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_119", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 119, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":640} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_120", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 120, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":641} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_121", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 121, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":642} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_122", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 122, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":643} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_123", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 123, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":644} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_124", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 124, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":645} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_125", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 125, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":646} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_126", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 126, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":647} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_127", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 127, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":648} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_128", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 128, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":649} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_129", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 129, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":650} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_130", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 130, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":651} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_131", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 131, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":652} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_132", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 132, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":653} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_133", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 133, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":654} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_134", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 134, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":655} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_135", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 135, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":656} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_136", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 136, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":657} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_137", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 137, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":658} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_138", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 138, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":659} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_139", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 139, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":660} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_140", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 140, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":661} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_141", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 141, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":662} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_142", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 142, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":663} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_143", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 143, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":664} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_144", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 144, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":665} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_145", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 145, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":666} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_146", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 146, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":667} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_147", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 147, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":668} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_148", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 148, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":669} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_149", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 149, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":670} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_150", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 150, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":671} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_151", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 151, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":672} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_152", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 152, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":673} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_153", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 153, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":674} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_154", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 154, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":675} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_155", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 155, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":676} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_156", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 156, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":677} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_157", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 157, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":678} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_158", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 158, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":679} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_159", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 159, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":680} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_160", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 160, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":681} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_161", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 161, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":682} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_162", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 162, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":683} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_163", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 163, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":684} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_164", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 164, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":685} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_165", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 165, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":686} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_166", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 166, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":687} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_167", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 167, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":688} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_168", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 168, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":689} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_169", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 169, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":690} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_170", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 170, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":691} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_171", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 171, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":692} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_172", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 172, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":693} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_173", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 173, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":694} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_174", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 174, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":695} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_175", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 175, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":696} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_176", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 176, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":697} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_177", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 177, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":698} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_178", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 178, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":699} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_179", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 179, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":700} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_180", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 180, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":701} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_181", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 181, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":702} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_182", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 182, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":703} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_183", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 183, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":704} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_184", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 184, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":705} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_185", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 185, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":706} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_186", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 186, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":707} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_187", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 187, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":708} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_188", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 188, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":709} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_189", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 189, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":710} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_190", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 190, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":711} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_191", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 191, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":712} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_192", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 192, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":713} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_193", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 193, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":714} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_194", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 194, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":715} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_195", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 195, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":716} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_196", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 196, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":717} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_197", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 197, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":718} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_198", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 198, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":719} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_199", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 199, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":720} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_200", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 200, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":721} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_201", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 201, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":722} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_202", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 202, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":723} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_203", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 203, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":724} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_204", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 204, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":725} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_205", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 205, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":726} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_206", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 206, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":727} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_207", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 207, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":728} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_208", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 208, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":729} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_209", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 209, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":730} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_210", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 210, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":731} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_211", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 211, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":732} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_212", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 212, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":733} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_213", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 213, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":734} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_214", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 214, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":735} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_215", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 215, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":736} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_216", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 216, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":737} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_217", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 217, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":738} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_218", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 218, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":739} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_219", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 219, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":740} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01lay_220", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1902}, - "fMother" : {"$ref":1897}, - "fNumber" : 220, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":741} - }] - }, - "fShape" : {"$ref":1156}, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 89, - "fNtotal" : 2422, - "fRefCount" : 301 - }, - "fMother" : {"$ref":1894}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":510} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":742} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_3", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 3, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":743} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_4", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 4, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":744} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_5", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 5, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":745} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_6", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 6, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":746} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_7", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 7, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":747} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_8", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 8, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":748} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_9", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 9, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":749} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_10", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 10, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":750} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_11", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 11, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":751} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_12", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 12, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":752} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_13", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 13, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":753} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_14", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 14, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":754} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_15", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 15, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":755} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_16", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 16, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":756} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_17", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 17, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":757} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_18", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 18, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":758} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_19", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 19, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":759} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_20", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 20, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":760} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_21", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 21, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":761} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_22", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 22, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":762} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_23", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 23, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":763} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_24", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 24, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":764} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_25", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 25, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":765} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_26", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 26, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":766} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_27", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 27, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":767} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_28", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 28, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":768} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_29", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 29, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":769} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_30", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 30, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":770} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_31", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 31, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":771} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_32", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 32, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":772} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_33", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 33, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":773} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_34", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 34, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":774} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_35", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 35, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":775} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_36", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 36, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":776} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_37", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 37, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":777} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_38", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 38, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":778} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_39", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 39, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":779} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_40", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 40, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":780} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_41", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 41, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":781} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_42", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 42, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":782} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_43", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 43, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":783} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_44", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 44, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":784} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_45", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 45, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":785} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_46", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 46, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":786} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_47", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 47, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":787} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_48", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 48, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":788} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_49", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 49, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":789} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_50", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 50, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":790} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_51", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 51, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":791} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_52", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 52, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":792} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_53", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 53, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":793} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_54", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 54, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":794} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_55", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 55, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":795} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_56", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 56, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":796} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_57", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 57, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":797} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_58", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 58, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":798} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_59", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 59, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":799} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_60", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 60, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":800} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_61", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 61, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":801} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_62", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 62, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":802} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_63", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 63, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":803} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_64", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 64, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":804} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_65", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 65, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":805} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_66", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 66, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":806} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_67", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 67, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":807} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_68", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 68, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":808} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_69", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 69, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":809} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_70", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 70, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":810} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_71", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 71, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":811} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_72", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 72, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":812} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_73", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 73, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":813} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_74", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 74, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":814} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_75", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 75, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":815} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_76", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 76, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":816} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_77", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 77, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":817} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_78", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 78, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":818} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_79", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 79, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":819} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01mod_80", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1897}, - "fMother" : {"$ref":1894}, - "fNumber" : 80, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":820} - }] - }, - "fShape" : {"$ref":1155}, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 88, - "fNtotal" : 193761, - "fRefCount" : 82 - }, - "fMother" : {"$ref":1258}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":509} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ecal01_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1894}, - "fMother" : {"$ref":1258}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":821} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Silicon_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolumeAssembly", - "fUniqueID" : 0, - "fBits" : 59785216, - "fName" : "Silicon", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 1, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "station0_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolumeAssembly", - "fUniqueID" : 0, - "fBits" : 59768832, - "fName" : "station0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 1, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "moduleV_0_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 59768832, - "fName" : "moduleV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sensor_zone_upper_partV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "Sensor_zone_upper_partV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1233}, - "fMedium" : { - "_typename" : "TGeoMedium", - "fUniqueID" : 21, - "fBits" : 50331648, - "fName" : "silicon", - "fTitle" : "", - "fId" : 21, - "fParams" : [1, 1, 20, -1, -1, -1, 0.001, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "fMaterial" : { - "_typename" : "TGeoMaterial", - "fUniqueID" : 21, - "fBits" : 50331648, - "fName" : "silicon", - "fTitle" : "", - "fFillColor" : 19, - "fFillStyle" : 1001, - "fIndex" : 20, - "fA" : 28.0855, - "fZ" : 14, - "fDensity" : 2.33, - "fRadLen" : 9.34960746942193, - "fIntLen" : 45.753205754866, - "fTemperature" : 273.15, - "fPressure" : 632420000, - "fState" : 0, - "fShader" : null, - "fCerenkov" : null, - "fElement" : null - } - }, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 95, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":2224}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":822} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sensor_zone_lower_part_rectV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "Sensor_zone_lower_part_rectV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1234}, - "fMedium" : {"$ref":2228}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 96, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":2224}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":823} - }] - }, - "fShape" : {"$ref":1235}, - "fMedium" : {"$ref":2228}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 97, - "fNtotal" : 3, - "fRefCount" : 3 - }, - "fMother" : {"$ref":2221}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 61210624, - "fName" : "c812", - "fTitle" : "", - "fTranslation" : [9, 6.15175, 3.325], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 52690944, - "fName" : "", - "fTitle" : "", - "fRotationMatrix" : [-1, 0, 1.22464679914735e-16, 0, 1, 0, -1.22464679914735e-16, -0, -1] - } - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frameV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 2, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1161}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 98, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":2221}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 61210624, - "fName" : "c814", - "fTitle" : "", - "fTranslation" : [9, 6.15175, 3.22], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 52690944, - "fName" : "", - "fTitle" : "", - "fRotationMatrix" : [-1, 0, 1.22464679914735e-16, 0, 1, 0, -1.22464679914735e-16, -0, -1] - } - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "moduleV_1_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 59768832, - "fName" : "moduleV_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sensor_zone_upper_partV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "Sensor_zone_upper_partV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1238}, - "fMedium" : {"$ref":2228}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 95, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":2239}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":824} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sensor_zone_lower_part_bevelV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "Sensor_zone_lower_part_bevelV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1236}, - "fMedium" : {"$ref":2228}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 99, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":2239}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":825} - }] - }, - "fShape" : {"$ref":1237}, - "fMedium" : {"$ref":2228}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 100, - "fNtotal" : 3, - "fRefCount" : 3 - }, - "fMother" : {"$ref":2221}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 61210624, - "fName" : "c814", - "fTitle" : "", - "fTranslation" : [3, 6.15175, 1.795], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 52690944, - "fName" : "", - "fTitle" : "", - "fRotationMatrix" : [-1, 0, 1.22464679914735e-16, 0, 1, 0, -1.22464679914735e-16, -0, -1] - } - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frameV_1", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 17, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1170}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 8, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":2221}, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 61210624, - "fName" : "c816", - "fTitle" : "", - "fTranslation" : [3, 6.15175, 1.69], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 52690944, - "fName" : "", - "fTitle" : "", - "fRotationMatrix" : [-1, 0, 1.22464679914735e-16, 0, 1, 0, -1.22464679914735e-16, -0, -1] - } - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "moduleV_2_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 59768832, - "fName" : "moduleV_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sensor_zone_upper_partV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "Sensor_zone_upper_partV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1240}, - "fMedium" : {"$ref":2228}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 95, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":2252}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":826} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sensor_zone_lower_part_bevelV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "Sensor_zone_lower_part_bevelV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1241}, - "fMedium" : {"$ref":2228}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 99, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":2252}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":827} - }] - }, - "fShape" : {"$ref":1239}, - "fMedium" : {"$ref":2228}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 101, - "fNtotal" : 3, - "fRefCount" : 3 - }, - "fMother" : {"$ref":2221}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t816", - "fTitle" : "", - "fTranslation" : [-3, 6.15175, 3.105], - "fRotation" : null - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frameV_2", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 17, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1179}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 8, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":2221}, - "fNumber" : 2, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t818", - "fTitle" : "", - "fTranslation" : [-3, 6.15175, 3.21], - "fRotation" : null - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "moduleV_3_3", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 59768832, - "fName" : "moduleV_3", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sensor_zone_upper_partV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "Sensor_zone_upper_partV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1243}, - "fMedium" : {"$ref":2228}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 95, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":2263}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":828} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sensor_zone_lower_part_rectV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "Sensor_zone_lower_part_rectV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1244}, - "fMedium" : {"$ref":2228}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 96, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":2263}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":829} - }] - }, - "fShape" : {"$ref":1242}, - "fMedium" : {"$ref":2228}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 102, - "fNtotal" : 3, - "fRefCount" : 3 - }, - "fMother" : {"$ref":2221}, - "fNumber" : 3, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t818", - "fTitle" : "", - "fTranslation" : [-9, 6.15175, 1.575], - "fRotation" : null - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frameV_3", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 17, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1188}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 8, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":2221}, - "fNumber" : 3, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t820", - "fTitle" : "", - "fTranslation" : [-9, 6.15175, 1.68], - "fRotation" : null - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "moduleV_4_4", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 59768832, - "fName" : "moduleV_4", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sensor_zone_upper_partV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "Sensor_zone_upper_partV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1246}, - "fMedium" : {"$ref":2228}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 95, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":2274}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":830} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sensor_zone_lower_part_rectV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "Sensor_zone_lower_part_rectV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1247}, - "fMedium" : {"$ref":2228}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 96, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":2274}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":831} - }] - }, - "fShape" : {"$ref":1245}, - "fMedium" : {"$ref":2228}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 103, - "fNtotal" : 3, - "fRefCount" : 3 - }, - "fMother" : {"$ref":2221}, - "fNumber" : 4, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 61210624, - "fName" : "c820", - "fTitle" : "", - "fTranslation" : [9, -6.15175, 2.065], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 52690944, - "fName" : "", - "fTitle" : "", - "fRotationMatrix" : [-1, 0, 1.22464679914735e-16, 1.49975978266186e-32, -1, 1.22464679914735e-16, 1.22464679914735e-16, 1.22464679914735e-16, 1] - } - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frameV_4", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 17, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1197}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 8, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":2221}, - "fNumber" : 4, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 61210624, - "fName" : "c822", - "fTitle" : "", - "fTranslation" : [9, -6.15175, 2.17], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 52690944, - "fName" : "", - "fTitle" : "", - "fRotationMatrix" : [-1, 0, 1.22464679914735e-16, 1.49975978266186e-32, -1, 1.22464679914735e-16, 1.22464679914735e-16, 1.22464679914735e-16, 1] - } - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "moduleV_5_5", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 59768832, - "fName" : "moduleV_5", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sensor_zone_upper_partV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "Sensor_zone_upper_partV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1249}, - "fMedium" : {"$ref":2228}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 95, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":2287}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":832} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sensor_zone_lower_part_bevelV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "Sensor_zone_lower_part_bevelV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1250}, - "fMedium" : {"$ref":2228}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 99, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":2287}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":833} - }] - }, - "fShape" : {"$ref":1248}, - "fMedium" : {"$ref":2228}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 104, - "fNtotal" : 3, - "fRefCount" : 3 - }, - "fMother" : {"$ref":2221}, - "fNumber" : 5, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 61210624, - "fName" : "c822", - "fTitle" : "", - "fTranslation" : [3, -6.15175, 3.595], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 52690944, - "fName" : "", - "fTitle" : "", - "fRotationMatrix" : [-1, 0, 1.22464679914735e-16, 1.49975978266186e-32, -1, 1.22464679914735e-16, 1.22464679914735e-16, 1.22464679914735e-16, 1] - } - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frameV_5", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 17, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1206}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 8, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":2221}, - "fNumber" : 5, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 61210624, - "fName" : "c824", - "fTitle" : "", - "fTranslation" : [3, -6.15175, 3.7], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 52690944, - "fName" : "", - "fTitle" : "", - "fRotationMatrix" : [-1, 0, 1.22464679914735e-16, 1.49975978266186e-32, -1, 1.22464679914735e-16, 1.22464679914735e-16, 1.22464679914735e-16, 1] - } - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "moduleV_6_6", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 59768832, - "fName" : "moduleV_6", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sensor_zone_upper_partV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "Sensor_zone_upper_partV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1252}, - "fMedium" : {"$ref":2228}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 95, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":2300}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":834} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sensor_zone_lower_part_bevelV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "Sensor_zone_lower_part_bevelV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1253}, - "fMedium" : {"$ref":2228}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 99, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":2300}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":835} - }] - }, - "fShape" : {"$ref":1251}, - "fMedium" : {"$ref":2228}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 105, - "fNtotal" : 3, - "fRefCount" : 3 - }, - "fMother" : {"$ref":2221}, - "fNumber" : 6, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 61210624, - "fName" : "c824", - "fTitle" : "", - "fTranslation" : [-3, -6.15175, 2.285], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 52690944, - "fName" : "", - "fTitle" : "", - "fRotationMatrix" : [1, 0, 0, -0, -1, -1.22464679914735e-16, 0, 1.22464679914735e-16, -1] - } - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frameV_6", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 17, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1215}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 8, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":2221}, - "fNumber" : 6, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 61210624, - "fName" : "c826", - "fTitle" : "", - "fTranslation" : [-3, -6.15175, 2.18], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 52690944, - "fName" : "", - "fTitle" : "", - "fRotationMatrix" : [1, 0, 0, -0, -1, -1.22464679914735e-16, 0, 1.22464679914735e-16, -1] - } - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "moduleV_7_7", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 59768832, - "fName" : "moduleV_7", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sensor_zone_upper_partV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "Sensor_zone_upper_partV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1255}, - "fMedium" : {"$ref":2228}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 95, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":2313}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":836} - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sensor_zone_lower_part_rectV_0", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "Sensor_zone_lower_part_rectV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 5, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1256}, - "fMedium" : {"$ref":2228}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 96, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":2313}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":837} - }] - }, - "fShape" : {"$ref":1254}, - "fMedium" : {"$ref":2228}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 106, - "fNtotal" : 3, - "fRefCount" : 3 - }, - "fMother" : {"$ref":2221}, - "fNumber" : 7, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 61210624, - "fName" : "c826", - "fTitle" : "", - "fTranslation" : [-9, -6.15175, 3.815], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 52690944, - "fName" : "", - "fTitle" : "", - "fRotationMatrix" : [1, 0, 0, -0, -1, -1.22464679914735e-16, 0, 1.22464679914735e-16, -1] - } - } - }, { - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "frameV_7", - "fTitle" : "", - "fGeoAtt" : 3084, - "fVolume" : { - "_typename" : "TGeoVolume", - "fUniqueID" : 0, - "fBits" : 58720256, - "fName" : "frameV", - "fTitle" : "", - "fGeoAtt" : 3084, - "fLineColor" : 17, - "fLineStyle" : 1, - "fLineWidth" : 1, - "fFillColor" : 19, - "fFillStyle" : 1001, - "fNodes" : null, - "fShape" : {"$ref":1224}, - "fMedium" : {"$ref":934}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 8, - "fNtotal" : 1, - "fRefCount" : 1 - }, - "fMother" : {"$ref":2221}, - "fNumber" : 7, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoCombiTrans", - "fUniqueID" : 0, - "fBits" : 61210624, - "fName" : "c828", - "fTitle" : "", - "fTranslation" : [-9, -6.15175, 3.71], - "fRotation" : { - "_typename" : "TGeoRotation", - "fUniqueID" : 0, - "fBits" : 52690944, - "fName" : "", - "fTitle" : "", - "fRotationMatrix" : [1, 0, 0, -0, -1, -1.22464679914735e-16, 0, 1.22464679914735e-16, -1] - } - } - }] - }, - "fShape" : { - "_typename" : "TGeoShapeAssembly", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fShapeId" : 0, - "fShapeBits" : 1024, - "fDX" : 12.15, - "fDY" : 12.4535, - "fDZ" : 1.135, - "fOrigin" : [0, 0, 2.695], - "fVolume" : {"$ref":2221}, - "fBBoxOK" : true - }, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 3, - "fNtotal" : 33, - "fRefCount" : 17 - }, - "fMother" : {"$ref":2218}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : { - "_typename" : "TGeoTranslation", - "fUniqueID" : 0, - "fBits" : 52559872, - "fName" : "t812", - "fTitle" : "", - "fTranslation" : [0, -4.5, 0] - } - }] - }, - "fShape" : { - "_typename" : "TGeoShapeAssembly", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fShapeId" : 0, - "fShapeBits" : 1024, - "fDX" : 12.15, - "fDY" : 12.4535, - "fDZ" : 1.135, - "fOrigin" : [0, -4.5, 2.695], - "fVolume" : {"$ref":2218}, - "fBBoxOK" : true - }, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 94, - "fNtotal" : 34, - "fRefCount" : 3 - }, - "fMother" : {"$ref":1258}, - "fNumber" : 0, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":839} - }] - }, - "fShape" : {"$ref":848}, - "fMedium" : {"$ref":937}, - "fFinder" : null, - "fVoxels" : null, - "fNumber" : 1, - "fNtotal" : 413815, - "fRefCount" : 10 - }, {"$ref":1261}, {"$ref":1264}, {"$ref":1271}, {"$ref":1279}, {"$ref":1285}, {"$ref":1291}, {"$ref":1296}, {"$ref":1293}, {"$ref":1332}, {"$ref":1288}, {"$ref":1380}, {"$ref":1382}, {"$ref":1385}, {"$ref":1404}, {"$ref":1377}, {"$ref":1412}, {"$ref":1415}, {"$ref":1418}, {"$ref":1432}, {"$ref":1426}, {"$ref":1421}, {"$ref":1435}, {"$ref":1429}, {"$ref":1594}, {"$ref":1603}, {"$ref":1606}, {"$ref":1608}, {"$ref":1597}, {"$ref":1600}, {"$ref":1815}, {"$ref":943}, {"$ref":928}, {"$ref":933}, {"$ref":925}, {"$ref":940}, {"$ref":963}, {"$ref":954}, {"$ref":957}, {"$ref":951}, {"$ref":960}, {"$ref":983}, {"$ref":974}, {"$ref":977}, {"$ref":971}, {"$ref":980}, {"$ref":1013}, {"$ref":1015}, {"$ref":993}, {"$ref":996}, {"$ref":990}, {"$ref":1004}, {"$ref":1007}, {"$ref":1001}, {"$ref":1010}, {"$ref":1046}, {"$ref":1048}, {"$ref":1025}, {"$ref":1027}, {"$ref":1029}, {"$ref":1022}, {"$ref":1037}, {"$ref":1039}, {"$ref":1041}, {"$ref":1034}, {"$ref":1043}, {"$ref":1079}, {"$ref":1081}, {"$ref":1058}, {"$ref":1060}, {"$ref":1062}, {"$ref":1055}, {"$ref":1070}, {"$ref":1072}, {"$ref":1074}, {"$ref":1067}, {"$ref":1076}, {"$ref":1831}, {"$ref":1091}, {"$ref":1142}, {"$ref":1147}, {"$ref":1088}, {"$ref":1856}, {"$ref":1862}, {"$ref":1859}, {"$ref":1877}, {"$ref":1883}, {"$ref":1880}, {"$ref":1894}, {"$ref":1897}, {"$ref":1900}, {"$ref":1902}, {"$ref":1905}, {"$ref":1907}, {"$ref":2218}, {"$ref":2227}, {"$ref":2231}, {"$ref":2224}, {"$ref":2235}, {"$ref":2244}, {"$ref":2239}, {"$ref":2242}, {"$ref":2252}, {"$ref":2255}, {"$ref":2257}, {"$ref":2263}, {"$ref":2266}, {"$ref":2268}, {"$ref":2274}, {"$ref":2277}, {"$ref":2279}, {"$ref":2287}, {"$ref":2290}, {"$ref":2292}, {"$ref":2300}, {"$ref":2303}, {"$ref":2305}, {"$ref":2313}, {"$ref":2316}, {"$ref":2318}] - }, - "fPhysicalNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [] - }, - "fTracks" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [] - }, - "fPdgNames" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "d", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "d_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "u", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "u_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "s", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "s_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "c", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "c_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "b", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "b_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "t", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "t_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "b'", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "b'_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "t'", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "t'_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "e-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "e+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "nu_e", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "nu_e_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "mu-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "mu+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "nu_mu", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "nu_mu_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tau-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tau+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "nu_tau", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "nu_tau_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tau'-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "tau'+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "nu'_tau", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "nu'_tau_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "g", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "gamma", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Z0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "W+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "W-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "h0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "reggeon", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "pomeron", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Z'0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Z\"0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "W'+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "W'-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "H0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "A0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "H+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "H-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "eta_tech0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "LQ_ue", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "LQ_ue_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "R0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "R0_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "pi_tech0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "pi_tech+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "pi_tech-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "pi'_tech0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "rho_tech0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "rho_tech+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "rho_tech-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "omega_tech", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "H_L++", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "H_L--", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "H_R++", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "H_R--", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "W_R+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "W_R-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "nu_Re", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "nu_Re_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "nu_Rmu", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "nu_Rmu_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "nu_Rtau", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "nu_Rtau_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "specflav", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "rndmflav", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "rndmflav_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "phasespa", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "c-hadron", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "c-hadron_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "b-hadron", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "b-hadron_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "cluster", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "string", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "indep.", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "CMshower", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "SPHEaxis", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "THRUaxis", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "CLUSjet", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "CELLjet", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "table", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "rho_diff0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "pi0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "rho0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "a_20", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "K_L0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "pi_diffr+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "pi_diffr-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "pi+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "pi-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "rho+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "rho-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "a_2+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "a_2-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "omega_di", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "eta", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "omega", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "f_2", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "K_S0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "K0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "K0_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "K*0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "K*0_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "K*_20", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "K*_20_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "K+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "K-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "K*+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "K*-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "K*_2+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "K*_2-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "phi_diff", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "eta'", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "phi", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "f'_2", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "D+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "D-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "D*+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "D*-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "D*_2+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "D*_2-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "D0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "D0_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "D*0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "D*0_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "D*_20", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "D*_20_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "D_s+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "D_s-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "D*_s+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "D*_s-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "D*_2s+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "D*_2s-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "J\/psi_di", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "eta_c", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "J\/psi", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "chi_2c", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "B0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "B0_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "B*0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "B*0_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "B*_20", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "B*_20_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "B+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "B-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "B*+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "B*-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "B*_2+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "B*_2-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "B_s0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "B_s0_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "B*_s0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "B*_s0_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "B*_2s0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "B*_2s0_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "B_c+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "B_c-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "B*_c+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "B*_c-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "B*_2c+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "B*_2c-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "eta_b", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Upsilon", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "chi_2b", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "dd_1", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "dd_1_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Delta-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Delta-_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ud_0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ud_0_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ud_1", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ud_1_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "n_diffr0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "n_diffr0_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "neutron", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "antineutron", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Delta0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Delta0_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "uu_1", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "uu_1_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "p_diffr+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "p_diffr+_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "proton", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "antiproton", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Delta+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Delta+_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Delta++", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Delta--", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "sd_0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "sd_0_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "sd_1", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "sd_1_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sigma-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sigma-_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sigma*-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sigma*-_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Lambda0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Lambda0_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "su_0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "su_0_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "su_1", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "su_1_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sigma0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sigma0_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sigma*0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sigma*0_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sigma+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sigma+_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sigma*+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sigma*+_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ss_1", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "ss_1_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Xi-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Xi-_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Xi*-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Xi*+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Xi0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Xi0_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Xi*0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Xi*0_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Omega-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Omega+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "cd_0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "cd_0_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "cd_1", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "cd_1_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sigma_c0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sigma_c0_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sigma*_c0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sigma*_c0_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Lambda_c+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Lambda_c-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Xi_c0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Xi_c0_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "cu_0", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "cu_0_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "cu_1", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "cu_1_bar", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sigma_c+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sigma_c-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sigma*_c+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sigma*_c-", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sigma_c++", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sigma_c--", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sigma*_c++", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Sigma*_c--", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Xi_c+", - "fTitle" : "" - }, { - "_typename" : "TNamed", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "Xi_c-", - "fTitle" : "" - }] - }, - "fMaterials" : { - "_typename" : "TList", - "name" : "THashList", - "arr" : [{"$ref":938}, {"$ref":1266}, {"$ref":1273}, {"$ref":1281}, {"$ref":1144}, {"$ref":1093}, {"$ref":1149}, {"$ref":1334}, {"$ref":945}, {"$ref":1437}, {"$ref":1813}, { - "_typename" : "TGeoMaterial", - "fUniqueID" : 12, - "fBits" : 50331648, - "fName" : "VACUUM", - "fTitle" : "", - "fFillColor" : 19, - "fFillStyle" : 1001, - "fIndex" : 11, - "fA" : 0, - "fZ" : 0, - "fDensity" : 0, - "fRadLen" : 1e30, - "fIntLen" : 1e30, - "fTemperature" : 273.15, - "fPressure" : 632420000, - "fState" : 0, - "fShader" : null, - "fCerenkov" : null, - "fElement" : null - }, { - "_typename" : "TGeoMaterial", - "fUniqueID" : 13, - "fBits" : 50331648, - "fName" : "SILICON", - "fTitle" : "", - "fFillColor" : 19, - "fFillStyle" : 1001, - "fIndex" : 12, - "fA" : 28.09, - "fZ" : 14, - "fDensity" : 2.33, - "fRadLen" : 9.35110551053256, - "fIntLen" : 45.753205754866, - "fTemperature" : 273.15, - "fPressure" : 632420000, - "fState" : 0, - "fShader" : null, - "fCerenkov" : null, - "fElement" : null - }, {"$ref":930}, {"$ref":1423}, { - "_typename" : "TGeoMixture", - "fUniqueID" : 16, - "fBits" : 50331648, - "fName" : "TYVEC", - "fTitle" : "", - "fFillColor" : 19, - "fFillStyle" : 1001, - "fIndex" : 15, - "fA" : 10.4296180316, - "fZ" : 5.281386, - "fDensity" : 0.93, - "fRadLen" : 47.5076063184073, - "fIntLen" : 72.8965033104632, - "fTemperature" : 273.15, - "fPressure" : 632420000, - "fState" : 0, - "fShader" : null, - "fCerenkov" : null, - "fElement" : null, - "fNelements" : 2, - "fZmixture" : [6, 1], - "fAmixture" : [12.011, 1.008], - "fWeights" : [0.8562772, 0.1437228], - "fNatoms" : [], - "fVecNbOfAtomsPerVolume" : [], - "fElements" : null - }, {"$ref":965}, {"$ref":935}, { - "_typename" : "TGeoMaterial", - "fUniqueID" : 19, - "fBits" : 50331648, - "fName" : "lead", - "fTitle" : "", - "fFillColor" : 19, - "fFillStyle" : 1001, - "fIndex" : 18, - "fA" : 207.1, - "fZ" : 82, - "fDensity" : 11.34, - "fRadLen" : 0.561956031451292, - "fIntLen" : 18.2752677326212, - "fTemperature" : 273.15, - "fPressure" : 632420000, - "fState" : 0, - "fShader" : null, - "fCerenkov" : null, - "fElement" : null - }, {"$ref":1909}, {"$ref":2229}], - "opt" : ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""] - }, - "fMedia" : { - "_typename" : "TList", - "name" : "THashList", - "arr" : [{"$ref":937}, {"$ref":1265}, {"$ref":1272}, {"$ref":1280}, {"$ref":1143}, {"$ref":1092}, {"$ref":1148}, {"$ref":1333}, {"$ref":1812}, { - "_typename" : "TGeoMedium", - "fUniqueID" : 10, - "fBits" : 50331648, - "fName" : "VACUUM", - "fTitle" : "", - "fId" : 10, - "fParams" : [0, 1, 0.19, 0.25, -1, -1, 0.001, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "fMaterial" : {"$ref":2589} - }, {"$ref":944}, {"$ref":929}, {"$ref":1430}, {"$ref":1436}, {"$ref":1422}, { - "_typename" : "TGeoMedium", - "fUniqueID" : 16, - "fBits" : 50331648, - "fName" : "TYVEC", - "fTitle" : "", - "fId" : 16, - "fParams" : [0, 0, 0, 1, -1, -1, 0.001, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "fMaterial" : {"$ref":2591} - }, {"$ref":964}, {"$ref":934}, { - "_typename" : "TGeoMedium", - "fUniqueID" : 19, - "fBits" : 50331648, - "fName" : "lead", - "fTitle" : "", - "fId" : 19, - "fParams" : [0, 1, 20, -1, -1, -1, 0.001, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "fMaterial" : {"$ref":2592} - }, {"$ref":1908}, {"$ref":2228}], - "opt" : ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""] - }, - "fNodes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{ - "_typename" : "TGeoNodeMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "cave_1", - "fTitle" : "Top logical node", - "fGeoAtt" : 3084, - "fVolume" : {"$ref":1258}, - "fMother" : null, - "fNumber" : 1, - "fNovlp" : 0, - "fOverlaps" : [], - "fMatrix" : {"$ref":2} - }] - }, - "fOverlaps" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [] - }, - "fRegions" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [] - }, - "fMasterVolume" : {"$ref":1258}, - "fGLMatrix" : { - "_typename" : "TGeoHMatrix", - "fUniqueID" : 0, - "fBits" : 50331648, - "fName" : "", - "fTitle" : "", - "fTranslation" : [0, 0, 0], - "fRotationMatrix" : [1, 0, 0, 0, 1, 0, 0, 0, 1], - "fScale" : [1, 1, 1] - }, - "fUniqueVolumes" : { - "_typename" : "TObjArray", - "name" : "TObjArray", - "arr" : [{"$ref":1258}, {"$ref":1258}, {"$ref":1261}, {"$ref":1264}, {"$ref":1271}, {"$ref":1279}, {"$ref":1285}, {"$ref":1291}, {"$ref":1296}, {"$ref":1293}, {"$ref":1332}, {"$ref":1288}, {"$ref":1380}, {"$ref":1382}, {"$ref":1404}, {"$ref":1377}, {"$ref":1412}, {"$ref":1415}, {"$ref":1418}, {"$ref":1432}, {"$ref":1426}, {"$ref":1421}, {"$ref":1435}, {"$ref":1429}, {"$ref":1594}, {"$ref":1603}, {"$ref":1606}, {"$ref":1608}, {"$ref":1597}, {"$ref":1600}, {"$ref":1815}, {"$ref":943}, {"$ref":928}, {"$ref":933}, {"$ref":925}, {"$ref":940}, {"$ref":963}, {"$ref":954}, {"$ref":957}, {"$ref":951}, {"$ref":960}, {"$ref":983}, {"$ref":974}, {"$ref":977}, {"$ref":971}, {"$ref":980}, {"$ref":1013}, {"$ref":1015}, {"$ref":993}, {"$ref":996}, {"$ref":990}, {"$ref":1004}, {"$ref":1007}, {"$ref":1001}, {"$ref":1010}, {"$ref":1046}, {"$ref":1048}, {"$ref":1025}, {"$ref":1027}, {"$ref":1029}, {"$ref":1022}, {"$ref":1037}, {"$ref":1039}, {"$ref":1041}, {"$ref":1034}, {"$ref":1043}, {"$ref":1079}, {"$ref":1081}, {"$ref":1058}, {"$ref":1060}, {"$ref":1062}, {"$ref":1055}, {"$ref":1070}, {"$ref":1072}, {"$ref":1074}, {"$ref":1067}, {"$ref":1076}, {"$ref":1831}, {"$ref":1091}, {"$ref":1142}, {"$ref":1147}, {"$ref":1088}, {"$ref":1856}, {"$ref":1862}, {"$ref":1859}, {"$ref":1877}, {"$ref":1883}, {"$ref":1880}, {"$ref":1894}, {"$ref":1897}, {"$ref":1900}, {"$ref":1902}, {"$ref":1905}, {"$ref":1907}, {"$ref":2218}, {"$ref":2227}, {"$ref":2231}, {"$ref":2224}, {"$ref":2235}, {"$ref":2244}, {"$ref":2239}, {"$ref":2252}, {"$ref":2263}, {"$ref":2274}, {"$ref":2287}, {"$ref":2300}, {"$ref":2313}] - }, - "fNLevel" : 100, - "fHashPNE" : { - "_typename" : "THashList", - "name" : "THashList", - "arr" : [], - "opt" : [] - }, - "fSizePNEId" : 0, - "fNPNEId" : 0, - "fKeyPNEId" : [], - "fValuePNEId" : [], - "fUsePWNav" : false, - "fParallelWorld" : null -} \ No newline at end of file diff --git a/demo/playground/src/jvmMain/resources/root/BM@N_geometry.zip b/demo/playground/src/jvmMain/resources/root/BM@N_geometry.zip new file mode 100644 index 0000000000000000000000000000000000000000..47701be0b5a9ea2751ef0e50cad6d2b13eb2445e GIT binary patch literal 84791 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 +public val CanvasControls: FunctionComponent = functionComponent("CanvasControls") { props -> flexColumn { flexRow { css { diff --git a/ui/bootstrap/src/main/kotlin/space/kscience/visionforge/bootstrap/reactBootstrap.kt b/ui/bootstrap/src/main/kotlin/space/kscience/visionforge/bootstrap/reactBootstrap.kt index dca591fe..b37637fe 100644 --- a/ui/bootstrap/src/main/kotlin/space/kscience/visionforge/bootstrap/reactBootstrap.kt +++ b/ui/bootstrap/src/main/kotlin/space/kscience/visionforge/bootstrap/reactBootstrap.kt @@ -5,7 +5,6 @@ import kotlinx.html.DIV import kotlinx.html.id import kotlinx.html.js.onClickFunction import react.RBuilder -import react.ReactElement import react.dom.* import space.kscience.dataforge.names.Name import space.kscience.dataforge.names.NameToken @@ -16,7 +15,7 @@ import styled.styledDiv import styled.styledNav -public inline fun RBuilder.card(title: String, crossinline block: StyledDOMBuilder
.() -> Unit): ReactElement = +public inline fun RBuilder.card(title: String, crossinline block: StyledDOMBuilder
.() -> Unit): Unit = styledDiv { css { +"card" @@ -36,7 +35,7 @@ public inline fun RBuilder.card(title: String, crossinline block: StyledDOMBuild public fun RBuilder.accordion( id: String, elements: List.() -> Unit>>, -): ReactElement = styledDiv { +): Unit = styledDiv { css { +"accordion" //+"p-1" @@ -82,7 +81,7 @@ public fun RBuilder.accordion( } -public fun RBuilder.nameCrumbs(name: Name?, rootTitle: String, link: (Name) -> Unit): ReactElement = styledNav { +public fun RBuilder.nameCrumbs(name: Name?, rootTitle: String, link: (Name) -> Unit): Unit = styledNav { css { +"p-0" } @@ -127,9 +126,9 @@ public fun RSectionsBuilder.entry(title: String, builder: StyledDOMBuilder
. add(title to builder) } -public fun RBuilder.accordion(id: String, builder: RSectionsBuilder.() -> Unit): ReactElement { +public fun RBuilder.accordion(id: String, builder: RSectionsBuilder.() -> Unit): Unit { val list = ArrayList.() -> Unit>>().apply(builder) - return accordion(id, list) + accordion(id, list) } public enum class ContainerSize(public val suffix: String) { @@ -144,7 +143,7 @@ public enum class ContainerSize(public val suffix: String) { public inline fun RBuilder.container( size: ContainerSize = ContainerSize.FLUID, block: StyledDOMBuilder
.() -> Unit, -): ReactElement = styledDiv { +): Unit = styledDiv { css { classes.add("container${size.suffix}") } @@ -164,7 +163,7 @@ public inline fun RBuilder.gridColumn( weight: Int? = null, maxSize: GridMaxSize = GridMaxSize.NONE, block: StyledDOMBuilder
.() -> Unit, -): ReactElement = styledDiv { +): Unit = styledDiv { val weightSuffix = weight?.let { "-$it" } ?: "" css { classes.add("col${maxSize.suffix}$weightSuffix") @@ -174,7 +173,7 @@ public inline fun RBuilder.gridColumn( public inline fun RBuilder.gridRow( block: StyledDOMBuilder
.() -> Unit, -): ReactElement = styledDiv { +): Unit = styledDiv { css { classes.add("row") } diff --git a/ui/bootstrap/src/main/kotlin/space/kscience/visionforge/bootstrap/tabComponent.kt b/ui/bootstrap/src/main/kotlin/space/kscience/visionforge/bootstrap/tabComponent.kt index 987dbc0e..fc58fed7 100644 --- a/ui/bootstrap/src/main/kotlin/space/kscience/visionforge/bootstrap/tabComponent.kt +++ b/ui/bootstrap/src/main/kotlin/space/kscience/visionforge/bootstrap/tabComponent.kt @@ -12,22 +12,22 @@ import space.kscience.visionforge.react.flexColumn import styled.StyledDOMBuilder import styled.styledDiv -public external class TabProps : RProps { +public external interface TabProps : PropsWithChildren { public var id: String public var title: String? } @JsExport -public val Tab: FunctionComponent = functionalComponent { props -> +public val Tab: FunctionComponent = functionComponent { props -> props.children() } -public external class TabPaneProps : RProps { +public external interface TabPaneProps : PropsWithChildren { public var activeTab: String? } @JsExport -public val TabPane: FunctionComponent = functionalComponent("TabPane") { props -> +public val TabPane: FunctionComponent = functionComponent("TabPane") { props -> var activeTab: String? by useState(props.activeTab) val children: Array = Children.map(props.children) { diff --git a/ui/bootstrap/src/main/kotlin/space/kscience/visionforge/bootstrap/threeControls.kt b/ui/bootstrap/src/main/kotlin/space/kscience/visionforge/bootstrap/threeControls.kt index 95219db1..deacc025 100644 --- a/ui/bootstrap/src/main/kotlin/space/kscience/visionforge/bootstrap/threeControls.kt +++ b/ui/bootstrap/src/main/kotlin/space/kscience/visionforge/bootstrap/threeControls.kt @@ -2,8 +2,11 @@ package space.kscience.visionforge.bootstrap import kotlinx.css.* import kotlinx.css.properties.border -import react.* +import react.FunctionComponent +import react.RBuilder +import react.RProps import react.dom.h2 +import react.functionComponent import space.kscience.dataforge.names.Name import space.kscience.dataforge.names.isEmpty import space.kscience.visionforge.Vision @@ -21,7 +24,7 @@ public external interface ThreeControlsProps : RProps { } @JsExport -public val ThreeControls: FunctionComponent = functionalComponent { props -> +public val ThreeControls: FunctionComponent = functionComponent { props -> tabPane(if (props.selected != null) "Properties" else null) { tab("Canvas") { card("Canvas configuration") { @@ -67,7 +70,7 @@ public fun RBuilder.threeControls( selected: Name?, onSelect: (Name) -> Unit = {}, builder: TabBuilder.() -> Unit = {}, -): ReactElement = child(ThreeControls) { +): Unit = child(ThreeControls) { attrs { this.canvasOptions = canvasOptions this.vision = vision diff --git a/ui/react/src/main/kotlin/space/kscience/visionforge/react/MetaViewer.kt b/ui/react/src/main/kotlin/space/kscience/visionforge/react/MetaViewer.kt index 69683bc5..ed51f566 100644 --- a/ui/react/src/main/kotlin/space/kscience/visionforge/react/MetaViewer.kt +++ b/ui/react/src/main/kotlin/space/kscience/visionforge/react/MetaViewer.kt @@ -42,7 +42,7 @@ public external interface MetaViewerProps : RProps { public var descriptor: MetaDescriptor? } -private val MetaViewerItem: FunctionComponent = functionalComponent("MetaViewerItem") { props -> +private val MetaViewerItem: FunctionComponent = functionComponent("MetaViewerItem") { props -> metaViewerItem(props) } @@ -127,17 +127,16 @@ private fun RBuilder.metaViewerItem(props: MetaViewerProps) { } @JsExport -public val MetaViewer: FunctionComponent = - functionalComponent("MetaViewer") { props -> - child(MetaViewerItem) { - attrs { - this.key = "" - this.root = props.root - this.name = Name.EMPTY - this.descriptor = props.descriptor - } +public val MetaViewer: FunctionComponent = functionComponent("MetaViewer") { props -> + child(MetaViewerItem) { + attrs { + this.key = "" + this.root = props.root + this.name = Name.EMPTY + this.descriptor = props.descriptor } } +} public fun RBuilder.metaViewer(meta: Meta, descriptor: MetaDescriptor? = null, key: Any? = null) { child(MetaViewer) { diff --git a/ui/react/src/main/kotlin/space/kscience/visionforge/react/MultiSelectChooser.kt b/ui/react/src/main/kotlin/space/kscience/visionforge/react/MultiSelectChooser.kt index 84181340..45a98abd 100644 --- a/ui/react/src/main/kotlin/space/kscience/visionforge/react/MultiSelectChooser.kt +++ b/ui/react/src/main/kotlin/space/kscience/visionforge/react/MultiSelectChooser.kt @@ -9,14 +9,14 @@ import react.FunctionComponent import react.dom.attrs import react.dom.option import react.dom.select -import react.functionalComponent +import react.functionComponent import space.kscience.dataforge.meta.descriptors.allowedValues import space.kscience.dataforge.values.asValue import space.kscience.dataforge.values.string @JsExport public val MultiSelectChooser: FunctionComponent = - functionalComponent("MultiSelectChooser") { props -> + functionComponent("MultiSelectChooser") { props -> val onChange: (Event) -> Unit = { event: Event -> val newSelected = (event.target as HTMLSelectElement).selectedOptions.asList() .map { (it as HTMLOptionElement).value.asValue() } diff --git a/ui/react/src/main/kotlin/space/kscience/visionforge/react/PropertyEditor.kt b/ui/react/src/main/kotlin/space/kscience/visionforge/react/PropertyEditor.kt index 9ff77f2c..ea643813 100644 --- a/ui/react/src/main/kotlin/space/kscience/visionforge/react/PropertyEditor.kt +++ b/ui/react/src/main/kotlin/space/kscience/visionforge/react/PropertyEditor.kt @@ -48,7 +48,7 @@ public external interface PropertyEditorProps : RProps { } private val PropertyEditorItem: FunctionComponent = - functionalComponent("PropertyEditorItem") { props -> + functionComponent("PropertyEditorItem") { props -> propertyEditorItem(props) } @@ -193,7 +193,7 @@ private fun RBuilder.propertyEditorItem(props: PropertyEditorProps) { } @JsExport -public val PropertyEditor: FunctionComponent = functionalComponent("PropertyEditor") { props -> +public val PropertyEditor: FunctionComponent = functionComponent("PropertyEditor") { props -> child(PropertyEditorItem) { attrs { this.key = "" diff --git a/ui/react/src/main/kotlin/space/kscience/visionforge/react/RangeValueChooser.kt b/ui/react/src/main/kotlin/space/kscience/visionforge/react/RangeValueChooser.kt index c753271f..bda76147 100644 --- a/ui/react/src/main/kotlin/space/kscience/visionforge/react/RangeValueChooser.kt +++ b/ui/react/src/main/kotlin/space/kscience/visionforge/react/RangeValueChooser.kt @@ -8,7 +8,7 @@ import org.w3c.dom.HTMLInputElement import org.w3c.dom.events.Event import react.FunctionComponent import react.dom.attrs -import react.functionalComponent +import react.functionComponent import react.useState import space.kscience.dataforge.meta.descriptors.ValueRequirement import space.kscience.dataforge.meta.double @@ -20,7 +20,7 @@ import styled.styledInput @JsExport public val RangeValueChooser: FunctionComponent = - functionalComponent("RangeValueChooser") { props -> + functionComponent("RangeValueChooser") { props -> var innerValue by useState(props.actual.double) var rangeDisabled: Boolean by useState(props.meta.value == null) diff --git a/ui/react/src/main/kotlin/space/kscience/visionforge/react/ThreeCanvasComponent.kt b/ui/react/src/main/kotlin/space/kscience/visionforge/react/ThreeCanvasComponent.kt index 6be75689..b78ec7d9 100644 --- a/ui/react/src/main/kotlin/space/kscience/visionforge/react/ThreeCanvasComponent.kt +++ b/ui/react/src/main/kotlin/space/kscience/visionforge/react/ThreeCanvasComponent.kt @@ -21,7 +21,7 @@ public external interface ThreeCanvasProps : RProps { public var selected: Name? } -public val ThreeCanvasComponent: FunctionComponent = functionalComponent( +public val ThreeCanvasComponent: FunctionComponent = functionComponent( "ThreeCanvasComponent" ) { props -> val elementRef = useRef(null) diff --git a/ui/react/src/main/kotlin/space/kscience/visionforge/react/VisionTree.kt b/ui/react/src/main/kotlin/space/kscience/visionforge/react/VisionTree.kt index d746e14a..5fa44bfd 100644 --- a/ui/react/src/main/kotlin/space/kscience/visionforge/react/VisionTree.kt +++ b/ui/react/src/main/kotlin/space/kscience/visionforge/react/VisionTree.kt @@ -28,7 +28,7 @@ public external interface ObjectTreeProps : RProps { public var clickCallback: (Name) -> Unit } -private val TreeLabel = functionalComponent { props -> +private val TreeLabel = functionComponent { props -> val token = useMemo(props.name) { props.name.lastOrNull()?.toString() ?: "World" } styledSpan { css { @@ -107,7 +107,7 @@ private fun RBuilder.visionTree(props: ObjectTreeProps): Unit { } @JsExport -public val ObjectTree: FunctionComponent = functionalComponent("ObjectTree") { props -> +public val ObjectTree: FunctionComponent = functionComponent("ObjectTree") { props -> visionTree(props) } diff --git a/ui/react/src/main/kotlin/space/kscience/visionforge/react/layout.kt b/ui/react/src/main/kotlin/space/kscience/visionforge/react/layout.kt index e8d928f5..11a13561 100644 --- a/ui/react/src/main/kotlin/space/kscience/visionforge/react/layout.kt +++ b/ui/react/src/main/kotlin/space/kscience/visionforge/react/layout.kt @@ -6,14 +6,13 @@ import kotlinx.css.display import kotlinx.css.flexDirection import kotlinx.html.DIV import react.RBuilder -import react.ReactElement import styled.StyledDOMBuilder import styled.css import styled.styledDiv public inline fun RBuilder.flexColumn( block: StyledDOMBuilder
.() -> Unit -): ReactElement = styledDiv { +): Unit = styledDiv { css { display = Display.flex flexDirection = FlexDirection.column @@ -23,7 +22,7 @@ public inline fun RBuilder.flexColumn( public inline fun RBuilder.flexRow( block: StyledDOMBuilder
.() -> Unit -): ReactElement = styledDiv { +): Unit = styledDiv { css { display = Display.flex flexDirection = FlexDirection.row diff --git a/ui/react/src/main/kotlin/space/kscience/visionforge/react/valueChooser.kt b/ui/react/src/main/kotlin/space/kscience/visionforge/react/valueChooser.kt index 711710f6..cd686498 100644 --- a/ui/react/src/main/kotlin/space/kscience/visionforge/react/valueChooser.kt +++ b/ui/react/src/main/kotlin/space/kscience/visionforge/react/valueChooser.kt @@ -10,9 +10,12 @@ import kotlinx.html.js.onKeyDownFunction import org.w3c.dom.HTMLInputElement import org.w3c.dom.HTMLSelectElement import org.w3c.dom.events.Event -import react.* +import react.FunctionComponent +import react.RProps import react.dom.attrs import react.dom.option +import react.functionComponent +import react.useState import space.kscience.dataforge.meta.* import space.kscience.dataforge.meta.descriptors.MetaDescriptor import space.kscience.dataforge.meta.descriptors.allowedValues @@ -34,7 +37,7 @@ public external interface ValueChooserProps : RProps { @JsExport public val StringValueChooser: FunctionComponent = - functionalComponent("StringValueChooser") { props -> + functionComponent("StringValueChooser") { props -> var value by useState(props.actual.string ?: "") val keyDown: (Event) -> Unit = { event -> if (event.type == "keydown" && event.asDynamic().key == "Enter") { @@ -59,7 +62,7 @@ public val StringValueChooser: FunctionComponent = @JsExport public val BooleanValueChooser: FunctionComponent = - functionalComponent("BooleanValueChooser") { props -> + functionComponent("BooleanValueChooser") { props -> val handleChange: (Event) -> Unit = { val newValue = (it.target as HTMLInputElement).checked props.meta.value = newValue.asValue() @@ -78,7 +81,7 @@ public val BooleanValueChooser: FunctionComponent = @JsExport public val NumberValueChooser: FunctionComponent = - functionalComponent("NumberValueChooser") { props -> + functionComponent("NumberValueChooser") { props -> var innerValue by useState(props.actual.string ?: "") val keyDown: (Event) -> Unit = { event -> if (event.type == "keydown" && event.asDynamic().key == "Enter") { @@ -117,7 +120,7 @@ public val NumberValueChooser: FunctionComponent = @JsExport public val ComboValueChooser: FunctionComponent = - functionalComponent("ComboValueChooser") { props -> + functionComponent("ComboValueChooser") { props -> var selected by useState(props.actual.string ?: "") val handleChange: (Event) -> Unit = { selected = (it.target as HTMLSelectElement).value @@ -142,7 +145,7 @@ public val ComboValueChooser: FunctionComponent = @JsExport public val ColorValueChooser: FunctionComponent = - functionalComponent("ColorValueChooser") { props -> + functionComponent("ColorValueChooser") { props -> val handleChange: (Event) -> Unit = { props.meta.value = (it.target as HTMLInputElement).value.asValue() } @@ -162,7 +165,7 @@ public val ColorValueChooser: FunctionComponent = } @JsExport -public val ValueChooser: FunctionComponent = functionalComponent("ValueChooser") { props -> +public val ValueChooser: FunctionComponent = functionComponent("ValueChooser") { props -> val rawInput by useState(false) val descriptor = props.descriptor diff --git a/ui/ring/src/main/kotlin/ringui/Loader.kt b/ui/ring/src/main/kotlin/ringui/Loader.kt index c58d51c1..b7bc63a9 100644 --- a/ui/ring/src/main/kotlin/ringui/Loader.kt +++ b/ui/ring/src/main/kotlin/ringui/Loader.kt @@ -4,10 +4,11 @@ package ringui import react.ComponentClass -import react.dom.WithClassName +import react.PropsWithClassName + // https://github.com/JetBrains/ring-ui/blob/master/components/loader/loader.js -public external interface LoaderProps : WithClassName { +public external interface LoaderProps : PropsWithClassName { public var size: Number public var colors: Array public var message: String diff --git a/ui/ring/src/main/kotlin/ringui/LoaderScreen.kt b/ui/ring/src/main/kotlin/ringui/LoaderScreen.kt index 8d0bf578..d662ee2b 100644 --- a/ui/ring/src/main/kotlin/ringui/LoaderScreen.kt +++ b/ui/ring/src/main/kotlin/ringui/LoaderScreen.kt @@ -4,10 +4,10 @@ package ringui import react.ComponentClass -import react.dom.WithClassName +import react.PropsWithClassName // https://github.com/JetBrains/ring-ui/blob/master/components/loader-screen/loader-screen.js -public external interface LoaderScreenProps : WithClassName { +public external interface LoaderScreenProps : PropsWithClassName { public var containerClassName: String public var message: String } diff --git a/ui/ring/src/main/kotlin/space.kscience.visionforge.ring/ThreeViewWithControls.kt b/ui/ring/src/main/kotlin/space.kscience.visionforge.ring/ThreeViewWithControls.kt index 94f02fdd..03420cba 100644 --- a/ui/ring/src/main/kotlin/space.kscience.visionforge.ring/ThreeViewWithControls.kt +++ b/ui/ring/src/main/kotlin/space.kscience.visionforge.ring/ThreeViewWithControls.kt @@ -43,7 +43,7 @@ public fun ThreeCanvasWithControlsProps.tab(title: String, block: RBuilder.() -> } -public fun RBuilder.nameCrumbs(name: Name?, link: (Name) -> Unit): ReactElement = styledDiv { +public fun RBuilder.nameCrumbs(name: Name?, link: (Name) -> Unit): Unit = styledDiv { div { Link { attrs { @@ -77,7 +77,7 @@ public fun RBuilder.nameCrumbs(name: Name?, link: (Name) -> Unit): ReactElement @JsExport public val ThreeCanvasWithControls: FunctionComponent = - functionalComponent("ThreeViewWithControls") { props -> + functionComponent("ThreeViewWithControls") { props -> var selected by useState { props.selected } var solid: Solid? by useState(null) diff --git a/ui/ring/src/main/kotlin/space.kscience.visionforge.ring/ringThreeControls.kt b/ui/ring/src/main/kotlin/space.kscience.visionforge.ring/ringThreeControls.kt index 016ce4e0..46543106 100644 --- a/ui/ring/src/main/kotlin/space.kscience.visionforge.ring/ringThreeControls.kt +++ b/ui/ring/src/main/kotlin/space.kscience.visionforge.ring/ringThreeControls.kt @@ -9,9 +9,12 @@ import kotlinx.html.js.onClickFunction import org.w3c.dom.events.Event import org.w3c.files.Blob import org.w3c.files.BlobPropertyBag -import react.* +import react.FunctionComponent +import react.RBuilder +import react.RProps import react.dom.attrs import react.dom.button +import react.functionComponent import ringui.Island import ringui.SmartTabs import ringui.Tab @@ -35,8 +38,8 @@ internal fun saveData(event: Event, fileName: String, mimeType: String = "text/p fileSaver.saveAs(blob, fileName) } -internal fun RBuilder.canvasControls(options: Canvas3DOptions, vision: Vision?): ReactElement { - return child(CanvasControls) { +internal fun RBuilder.canvasControls(options: Canvas3DOptions, vision: Vision?): Unit { + child(CanvasControls) { attrs { this.options = options this.vision = vision @@ -49,7 +52,7 @@ internal external interface CanvasControlsProps : RProps { public var vision: Vision? } -internal val CanvasControls: FunctionComponent = functionalComponent("CanvasControls") { props -> +internal val CanvasControls: FunctionComponent = functionComponent("CanvasControls") { props -> flexColumn { flexRow { css { @@ -91,7 +94,7 @@ public external interface ThreeControlsProps : RProps { } @JsExport -public val ThreeControls: FunctionComponent = functionalComponent { props -> +public val ThreeControls: FunctionComponent = functionComponent { props -> SmartTabs("Tree") { props.vision?.let { Tab("Tree") { @@ -119,7 +122,7 @@ public fun RBuilder.ringThreeControls( selected: Name?, onSelect: (Name?) -> Unit = {}, additionalTabs: Map Unit>? = null -): ReactElement = child(ThreeControls) { +): Unit = child(ThreeControls) { attrs { this.canvasOptions = canvasOptions this.vision = vision