diff --git a/Simple.cpp b/Simple.cpp index 17de116..6006ccd 100644 --- a/Simple.cpp +++ b/Simple.cpp @@ -1049,37 +1049,37 @@ void Simple::UpdateObject(SimpleObject *obj, int index) UpdateGeometry(); } -//void Simple::on_delete_object_clicked() -//{ -// QList l= ui->objectTree->selectedItems(); -// //if(l.count()==1){ - -// foreach(QTreeWidgetItem *t, l){ -// int row = ui->objectTree->indexOfTopLevelItem(t); -// if(row!=0) { // row==0 is the World - do not allow to delete -// object_table_model->setObject(nullptr,-1); // set invalid pointers -// SimpleObject* obj =objectList.at(row); -// objectList.removeAt(row); -// // if(obj->isMesh()){ -// // for (int ii=0;iiobjectTree->takeTopLevelItem(row); -// } -// } -// UpdateGeometry(); -// // } -//} +void Simple::on_delete_object_clicked() +{ + QList l= ui->objectTree->selectedItems(); + //if(l.count()==1){ + + foreach(QTreeWidgetItem *t, l){ + int row = ui->objectTree->indexOfTopLevelItem(t); + if(row!=0) { // row==0 is the World - do not allow to delete + object_table_model->setObject(nullptr,-1); // set invalid pointers + SimpleObject* obj =objectList.at(row); + objectList.removeAt(row); + // if(obj->isMesh()){ + // for (int ii=0;iiobjectTree->takeTopLevelItem(row); + } + } + UpdateGeometry(); + // } +} void Simple::on_objectTree_itemSelectionChanged() { @@ -1089,60 +1089,60 @@ void Simple::on_objectTree_itemSelectionChanged() } } -//void Simple::on_duplicate_clicked() -//{ -// QList l= ui->objectTree->selectedItems(); -// if(l.count()>0){ -// QDialog dialog(this); // Use a layout allowing to have a label next to each field -// QFormLayout form(&dialog); // Add some text above the fields -// form.addRow(new QLabel("Duplicate objects")); - - -// QString label = "Axis"; -// QComboBox *axis_choices = new QComboBox(&dialog); -// axis_choices->addItems({"along x","along y","along z"}); -// form.addRow(label, axis_choices); - -// label = "Number of copies"; -// QSpinBox *nCopies = new QSpinBox(&dialog); -// nCopies->setRange(1,1000); -// form.addRow(label, nCopies); - -// label = "Spacing between copies (mm)"; -// QDoubleSpinBox *spacing = new QDoubleSpinBox(&dialog); -// spacing->setRange(-99999999,99999999); -// spacing->setDecimals(2); -// form.addRow(label, spacing); - -// QDialogButtonBox buttonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, -// Qt::Horizontal, &dialog); -// form.addRow(&buttonBox); -// QObject::connect(&buttonBox, SIGNAL(accepted()), &dialog, SLOT(accept())); -// QObject::connect(&buttonBox, SIGNAL(rejected()), &dialog, SLOT(reject())); - -// // Show the dialog as modal -// if (dialog.exec() == QDialog::Accepted) { -// int alongaxis=axis_choices->currentIndex(); -// int ncopies = nCopies->value(); -// double separation = spacing->value(); - -// foreach(QTreeWidgetItem *t, l){ -// int row = ui->objectTree->indexOfTopLevelItem(t); -// if(row!=0) { // row==0 is the World - do not allow to duplicate -// SimpleObject* obj = objectList.at(row); -// SimpleObject* new_object =obj; -// for(int ii=0; ii l= ui->objectTree->selectedItems(); + if(l.count()>0){ + QDialog dialog(this); // Use a layout allowing to have a label next to each field + QFormLayout form(&dialog); // Add some text above the fields + form.addRow(new QLabel("Duplicate objects")); + + + QString label = "Axis"; + QComboBox *axis_choices = new QComboBox(&dialog); + axis_choices->addItems({"along x","along y","along z"}); + form.addRow(label, axis_choices); + + label = "Number of copies"; + QSpinBox *nCopies = new QSpinBox(&dialog); + nCopies->setRange(1,1000); + form.addRow(label, nCopies); + + label = "Spacing between copies (mm)"; + QDoubleSpinBox *spacing = new QDoubleSpinBox(&dialog); + spacing->setRange(-99999999,99999999); + spacing->setDecimals(2); + form.addRow(label, spacing); + + QDialogButtonBox buttonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, + Qt::Horizontal, &dialog); + form.addRow(&buttonBox); + QObject::connect(&buttonBox, SIGNAL(accepted()), &dialog, SLOT(accept())); + QObject::connect(&buttonBox, SIGNAL(rejected()), &dialog, SLOT(reject())); + + // Show the dialog as modal + if (dialog.exec() == QDialog::Accepted) { + int alongaxis=axis_choices->currentIndex(); + int ncopies = nCopies->value(); + double separation = spacing->value(); + + foreach(QTreeWidgetItem *t, l){ + int row = ui->objectTree->indexOfTopLevelItem(t); + if(row!=0) { // row==0 is the World - do not allow to duplicate + SimpleObject* obj = objectList.at(row); + SimpleObject* new_object =obj; + for(int ii=0; iiget_output_file_name(); if(mesh_file_name!=""){ // if(hasToRecord==false){ // if no detector files are present then mesh files are opened automatically + ui->current_view->setText("Current view: "+mesh_file_name); worksheet->SetCurrentFile(mesh_file_name); QCompleter *c = new QCompleter(worksheet->getHeader()); ui->plotString->setCompleter(c); @@ -1639,6 +1640,7 @@ void Simple::HandleOutputFiles() { if(o->storeData()==true){ hasToRecord =true; + ui->current_view->setText("Current view: "+output_filename); worksheet->SetCurrentFile(output_filename); QCompleter *c = new QCompleter(worksheet->getHeader()); ui->plotString->setCompleter(c); @@ -1899,6 +1901,7 @@ void Simple::on_meshes_itemClicked(QTreeWidgetItem *item, int column) mesh_table_model->setMesh(meshList.at(row)); qDebug()<get_output_file_name()); worksheet->SetCurrentFile(QString("data/%1").arg(meshList.at(row)->get_output_file_name())); + ui->current_view->setText("Current view: "+QString("data/%1").arg(meshList.at(row)->get_output_file_name())); } } @@ -2010,6 +2013,7 @@ void Simple::on_fileDirectoryView_doubleClicked(const QModelIndex &index) QString fileName = fileSystemModel->filePath(index); if(fileName!="" && fileName.contains(".root")){ worksheet->SetCurrentFile(fileName); + ui->current_view->setText("Current view: "+fileName); QCompleter *c = new QCompleter(worksheet->getHeader()); ui->plotString->setCompleter(c); ui->cutString->setCompleter(c); @@ -2841,6 +2845,7 @@ void Simple::on_show_output_directory_clicked() void Simple::on_fileList_currentIndexChanged(const QString &arg1) { worksheet->SetCurrentFile(arg1); + ui->current_view->setText("Current view: "+arg1); QCompleter *c = new QCompleter(worksheet->getHeader()); ui->plotString->setCompleter(c); ui->cutString->setCompleter(c); diff --git a/Simple.h b/Simple.h index abe15ba..fbaa03a 100644 --- a/Simple.h +++ b/Simple.h @@ -129,8 +129,8 @@ private slots: void on_objectTree_itemSelectionChanged(); - //void on_duplicate_clicked(); - //void on_delete_object_clicked(); + void on_duplicate_clicked(); + void on_delete_object_clicked(); void on_db_type_currentIndexChanged(const QString &arg1); diff --git a/deploy-tools/db.sqlite b/deploy-tools/db.sqlite index c60c4e3..c6b7123 100644 Binary files a/deploy-tools/db.sqlite and b/deploy-tools/db.sqlite differ diff --git a/deploy-tools/models/ICAL2.sim b/deploy-tools/models/ICAL2.sim new file mode 100644 index 0000000..be960c7 --- /dev/null +++ b/deploy-tools/models/ICAL2.sim @@ -0,0 +1,6642 @@ +{ + "gun": [ + { + "dimX": 0, + "dimY": 0, + "dimZ": 0, + "gpsshapePlane": "XY plane", + "ionA": 60, + "ionZ": 27, + "nevents": 1, + "particleSource": true, + "particleType": "mu-", + "posX": 0, + "posY": 8250, + "posZ": 0, + "showevents": true, + "sourceShape": "Point" + }, + { + "angularDist": "none", + "dirx": 0, + "diry": -1, + "dirz": 0, + "phi_max": 0, + "phi_min": 0, + "sigma": 0, + "theta_max": 0, + "theta_min": 0 + }, + { + "emax": 500, + "emin": 1000, + "espectParam1": 0, + "espectParam2": 0, + "espectParam3": 0, + "espectType": "Monoenergetic", + "polx": 0, + "poly": 0, + "polz": -1 + } + ], + "meshes": [ + ], + "objects": [ + { + "dim-0": 16500, + "dim-1": 16500, + "dim-2": 16500, + "id": 0, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "gray", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "World", + "objType": "Box", + "posx": 0, + "posy": 0, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 1, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-001", + "objType": "Box", + "posx": 0, + "posy": 0, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 2, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-002", + "objType": "Box", + "posx": 0, + "posy": 48, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 3, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-003", + "objType": "Box", + "posx": 0, + "posy": 96, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 4, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-004", + "objType": "Box", + "posx": 0, + "posy": 192, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 5, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-005", + "objType": "Box", + "posx": 0, + "posy": 288, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 6, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-006", + "objType": "Box", + "posx": 0, + "posy": 384, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 7, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-007", + "objType": "Box", + "posx": 0, + "posy": 480, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 8, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-008", + "objType": "Box", + "posx": 0, + "posy": 576, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 9, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-009", + "objType": "Box", + "posx": 0, + "posy": 672, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 10, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-010", + "objType": "Box", + "posx": 0, + "posy": 768, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 11, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-011", + "objType": "Box", + "posx": 0, + "posy": 864, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 12, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-012", + "objType": "Box", + "posx": 0, + "posy": 960, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 13, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-013", + "objType": "Box", + "posx": 0, + "posy": 1056, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 14, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-014", + "objType": "Box", + "posx": 0, + "posy": 1152, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 15, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-015", + "objType": "Box", + "posx": 0, + "posy": 1248, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 16, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-016", + "objType": "Box", + "posx": 0, + "posy": 1344, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 17, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-017", + "objType": "Box", + "posx": 0, + "posy": 1440, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 18, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-018", + "objType": "Box", + "posx": 0, + "posy": 1536, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 19, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-019", + "objType": "Box", + "posx": 0, + "posy": 1632, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 20, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-020", + "objType": "Box", + "posx": 0, + "posy": 1728, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 21, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-021", + "objType": "Box", + "posx": 0, + "posy": 1824, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 22, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-022", + "objType": "Box", + "posx": 0, + "posy": 1920, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 23, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-023", + "objType": "Box", + "posx": 0, + "posy": 2016, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 24, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-024", + "objType": "Box", + "posx": 0, + "posy": 2112, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 25, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-025", + "objType": "Box", + "posx": 0, + "posy": 2208, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 26, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-026", + "objType": "Box", + "posx": 0, + "posy": 2304, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 27, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-027", + "objType": "Box", + "posx": 0, + "posy": 2400, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 28, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-028", + "objType": "Box", + "posx": 0, + "posy": 2496, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 29, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-029", + "objType": "Box", + "posx": 0, + "posy": 2592, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 30, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-030", + "objType": "Box", + "posx": 0, + "posy": 2688, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 31, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-031", + "objType": "Box", + "posx": 0, + "posy": 2784, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 32, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-032", + "objType": "Box", + "posx": 0, + "posy": 2880, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 33, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-033", + "objType": "Box", + "posx": 0, + "posy": 2976, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 34, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-034", + "objType": "Box", + "posx": 0, + "posy": 3072, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 35, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-035", + "objType": "Box", + "posx": 0, + "posy": 3168, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 36, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-036", + "objType": "Box", + "posx": 0, + "posy": 3264, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 37, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-037", + "objType": "Box", + "posx": 0, + "posy": 3360, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 38, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-038", + "objType": "Box", + "posx": 0, + "posy": 3456, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 39, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-039", + "objType": "Box", + "posx": 0, + "posy": 3552, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 40, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-040", + "objType": "Box", + "posx": 0, + "posy": 3648, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 41, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-041", + "objType": "Box", + "posx": 0, + "posy": 3744, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 42, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-042", + "objType": "Box", + "posx": 0, + "posy": 3840, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 43, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-043", + "objType": "Box", + "posx": 0, + "posy": 3936, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 44, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-044", + "objType": "Box", + "posx": 0, + "posy": 4032, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 45, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-045", + "objType": "Box", + "posx": 0, + "posy": 4128, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 46, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-046", + "objType": "Box", + "posx": 0, + "posy": 4224, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 47, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-047", + "objType": "Box", + "posx": 0, + "posy": 4320, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 48, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-048", + "objType": "Box", + "posx": 0, + "posy": 4416, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 49, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-049", + "objType": "Box", + "posx": 0, + "posy": 4512, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 50, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-050", + "objType": "Box", + "posx": 0, + "posy": 4608, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 51, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-051", + "objType": "Box", + "posx": 0, + "posy": 4704, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 52, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-052", + "objType": "Box", + "posx": 0, + "posy": 4800, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 53, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-053", + "objType": "Box", + "posx": 0, + "posy": 4896, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 54, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-054", + "objType": "Box", + "posx": 0, + "posy": 4992, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 55, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-055", + "objType": "Box", + "posx": 0, + "posy": 5088, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 56, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-056", + "objType": "Box", + "posx": 0, + "posy": 5184, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 57, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-057", + "objType": "Box", + "posx": 0, + "posy": 5280, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 58, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-058", + "objType": "Box", + "posx": 0, + "posy": 5376, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 59, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-059", + "objType": "Box", + "posx": 0, + "posy": 5472, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 60, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-060", + "objType": "Box", + "posx": 0, + "posy": 5568, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 61, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-061", + "objType": "Box", + "posx": 0, + "posy": 5664, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 62, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-062", + "objType": "Box", + "posx": 0, + "posy": 5760, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 63, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-063", + "objType": "Box", + "posx": 0, + "posy": 5856, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 64, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-064", + "objType": "Box", + "posx": 0, + "posy": 5952, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 65, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-065", + "objType": "Box", + "posx": 0, + "posy": 6048, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 66, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-066", + "objType": "Box", + "posx": 0, + "posy": 6144, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 67, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-067", + "objType": "Box", + "posx": 0, + "posy": 6240, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 68, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-068", + "objType": "Box", + "posx": 0, + "posy": 6336, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 69, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-069", + "objType": "Box", + "posx": 0, + "posy": 6432, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 70, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-070", + "objType": "Box", + "posx": 0, + "posy": 6528, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 71, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-071", + "objType": "Box", + "posx": 0, + "posy": 6624, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 72, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-072", + "objType": "Box", + "posx": 0, + "posy": 6720, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 73, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-073", + "objType": "Box", + "posx": 0, + "posy": 6816, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 74, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-074", + "objType": "Box", + "posx": 0, + "posy": 6912, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 75, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-075", + "objType": "Box", + "posx": 0, + "posy": 7008, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 76, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-076", + "objType": "Box", + "posx": 0, + "posy": 7104, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 77, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-077", + "objType": "Box", + "posx": 0, + "posy": -96, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 78, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-078", + "objType": "Box", + "posx": 0, + "posy": -192, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 79, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-079", + "objType": "Box", + "posx": 0, + "posy": -288, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 80, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-080", + "objType": "Box", + "posx": 0, + "posy": -384, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 81, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-081", + "objType": "Box", + "posx": 0, + "posy": -480, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 82, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-082", + "objType": "Box", + "posx": 0, + "posy": -576, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 83, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-083", + "objType": "Box", + "posx": 0, + "posy": -672, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 84, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-084", + "objType": "Box", + "posx": 0, + "posy": -768, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 85, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-085", + "objType": "Box", + "posx": 0, + "posy": -864, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 86, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-086", + "objType": "Box", + "posx": 0, + "posy": -960, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 87, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-087", + "objType": "Box", + "posx": 0, + "posy": -1056, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 88, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-088", + "objType": "Box", + "posx": 0, + "posy": -1152, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 89, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-089", + "objType": "Box", + "posx": 0, + "posy": -1248, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 90, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-090", + "objType": "Box", + "posx": 0, + "posy": -1344, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 91, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-091", + "objType": "Box", + "posx": 0, + "posy": -1440, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 92, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-092", + "objType": "Box", + "posx": 0, + "posy": -1536, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 93, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-093", + "objType": "Box", + "posx": 0, + "posy": -1632, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 94, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-094", + "objType": "Box", + "posx": 0, + "posy": -1728, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 95, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-095", + "objType": "Box", + "posx": 0, + "posy": -1824, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 96, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-096", + "objType": "Box", + "posx": 0, + "posy": -1920, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 97, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-097", + "objType": "Box", + "posx": 0, + "posy": -2016, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 98, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-098", + "objType": "Box", + "posx": 0, + "posy": -2112, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 99, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-099", + "objType": "Box", + "posx": 0, + "posy": -2208, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 100, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-100", + "objType": "Box", + "posx": 0, + "posy": -2304, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 101, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-101", + "objType": "Box", + "posx": 0, + "posy": -2400, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 102, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-102", + "objType": "Box", + "posx": 0, + "posy": -2496, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 103, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-103", + "objType": "Box", + "posx": 0, + "posy": -2592, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 104, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-104", + "objType": "Box", + "posx": 0, + "posy": -2688, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 105, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-105", + "objType": "Box", + "posx": 0, + "posy": -2784, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 106, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-106", + "objType": "Box", + "posx": 0, + "posy": -2880, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 107, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-107", + "objType": "Box", + "posx": 0, + "posy": -2976, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 108, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-108", + "objType": "Box", + "posx": 0, + "posy": -3072, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 109, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-109", + "objType": "Box", + "posx": 0, + "posy": -3168, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 110, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-110", + "objType": "Box", + "posx": 0, + "posy": -3264, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 111, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-111", + "objType": "Box", + "posx": 0, + "posy": -3360, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 112, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-112", + "objType": "Box", + "posx": 0, + "posy": -3456, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 113, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-113", + "objType": "Box", + "posx": 0, + "posy": -3552, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 114, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-114", + "objType": "Box", + "posx": 0, + "posy": -3648, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 115, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-115", + "objType": "Box", + "posx": 0, + "posy": -3744, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 116, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-116", + "objType": "Box", + "posx": 0, + "posy": -3840, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 117, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-117", + "objType": "Box", + "posx": 0, + "posy": -3936, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 118, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-118", + "objType": "Box", + "posx": 0, + "posy": -4032, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 119, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-119", + "objType": "Box", + "posx": 0, + "posy": -4128, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 120, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-120", + "objType": "Box", + "posx": 0, + "posy": -4224, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 121, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-121", + "objType": "Box", + "posx": 0, + "posy": -4320, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 122, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-122", + "objType": "Box", + "posx": 0, + "posy": -4416, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 123, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-123", + "objType": "Box", + "posx": 0, + "posy": -4512, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 124, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-124", + "objType": "Box", + "posx": 0, + "posy": -4608, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 125, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-125", + "objType": "Box", + "posx": 0, + "posy": -4704, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 126, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-126", + "objType": "Box", + "posx": 0, + "posy": -4800, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 127, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-127", + "objType": "Box", + "posx": 0, + "posy": -4896, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 128, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-128", + "objType": "Box", + "posx": 0, + "posy": -4992, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 129, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-129", + "objType": "Box", + "posx": 0, + "posy": -5088, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 130, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-130", + "objType": "Box", + "posx": 0, + "posy": -5184, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 131, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-131", + "objType": "Box", + "posx": 0, + "posy": -5280, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 132, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-132", + "objType": "Box", + "posx": 0, + "posy": -5376, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 133, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-133", + "objType": "Box", + "posx": 0, + "posy": -5472, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 134, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-134", + "objType": "Box", + "posx": 0, + "posy": -5568, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 135, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-135", + "objType": "Box", + "posx": 0, + "posy": -5664, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 136, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-136", + "objType": "Box", + "posx": 0, + "posy": -5760, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 137, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-137", + "objType": "Box", + "posx": 0, + "posy": -5856, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 138, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-138", + "objType": "Box", + "posx": 0, + "posy": -5952, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 139, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-139", + "objType": "Box", + "posx": 0, + "posy": -6048, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 140, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-140", + "objType": "Box", + "posx": 0, + "posy": -6144, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 141, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-141", + "objType": "Box", + "posx": 0, + "posy": -6240, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 142, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-142", + "objType": "Box", + "posx": 0, + "posy": -6336, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 143, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-143", + "objType": "Box", + "posx": 0, + "posy": -6432, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 144, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-144", + "objType": "Box", + "posx": 0, + "posy": -6528, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 145, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-145", + "objType": "Box", + "posx": 0, + "posy": -6624, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 146, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-146", + "objType": "Box", + "posx": 0, + "posy": -6720, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 147, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-147", + "objType": "Box", + "posx": 0, + "posy": -6816, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 148, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-148", + "objType": "Box", + "posx": 0, + "posy": -6912, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 149, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-149", + "objType": "Box", + "posx": 0, + "posy": -7008, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 150, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-150", + "objType": "Box", + "posx": 0, + "posy": -7104, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 56, + "dim-2": 16000, + "id": 151, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-151", + "objType": "Box", + "posx": 0, + "posy": -7200, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 152, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-152", + "objType": "Box", + "posx": 0, + "posy": 144, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 153, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-153", + "objType": "Box", + "posx": 0, + "posy": 240, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 154, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-154", + "objType": "Box", + "posx": 0, + "posy": 336, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 155, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-155", + "objType": "Box", + "posx": 0, + "posy": 432, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 156, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-156", + "objType": "Box", + "posx": 0, + "posy": 528, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 157, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-157", + "objType": "Box", + "posx": 0, + "posy": 624, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 158, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-158", + "objType": "Box", + "posx": 0, + "posy": 720, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 159, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-159", + "objType": "Box", + "posx": 0, + "posy": 816, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 160, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-160", + "objType": "Box", + "posx": 0, + "posy": 912, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 161, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-161", + "objType": "Box", + "posx": 0, + "posy": 1008, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 162, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-162", + "objType": "Box", + "posx": 0, + "posy": 1104, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 163, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-163", + "objType": "Box", + "posx": 0, + "posy": 1200, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 164, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-164", + "objType": "Box", + "posx": 0, + "posy": 1296, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 165, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-165", + "objType": "Box", + "posx": 0, + "posy": 1392, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 166, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-166", + "objType": "Box", + "posx": 0, + "posy": 1488, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 167, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-167", + "objType": "Box", + "posx": 0, + "posy": 1584, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 168, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-168", + "objType": "Box", + "posx": 0, + "posy": 1680, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 169, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-169", + "objType": "Box", + "posx": 0, + "posy": 1776, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 170, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-170", + "objType": "Box", + "posx": 0, + "posy": 1872, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 171, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-171", + "objType": "Box", + "posx": 0, + "posy": 1968, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 172, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-172", + "objType": "Box", + "posx": 0, + "posy": 2064, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 173, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-173", + "objType": "Box", + "posx": 0, + "posy": 2160, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 174, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-174", + "objType": "Box", + "posx": 0, + "posy": 2256, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 175, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-175", + "objType": "Box", + "posx": 0, + "posy": 2352, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 176, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-176", + "objType": "Box", + "posx": 0, + "posy": 2448, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 177, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-177", + "objType": "Box", + "posx": 0, + "posy": 2544, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 178, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-178", + "objType": "Box", + "posx": 0, + "posy": 2640, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 179, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-179", + "objType": "Box", + "posx": 0, + "posy": 2736, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 180, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-180", + "objType": "Box", + "posx": 0, + "posy": 2832, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 181, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-181", + "objType": "Box", + "posx": 0, + "posy": 2928, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 182, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-182", + "objType": "Box", + "posx": 0, + "posy": 3024, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 183, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-183", + "objType": "Box", + "posx": 0, + "posy": 3120, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 184, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-184", + "objType": "Box", + "posx": 0, + "posy": 3216, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 185, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-185", + "objType": "Box", + "posx": 0, + "posy": 3312, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 186, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-186", + "objType": "Box", + "posx": 0, + "posy": 3408, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 187, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-187", + "objType": "Box", + "posx": 0, + "posy": 3504, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 188, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-188", + "objType": "Box", + "posx": 0, + "posy": 3600, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 189, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-189", + "objType": "Box", + "posx": 0, + "posy": 3696, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 190, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-190", + "objType": "Box", + "posx": 0, + "posy": 3792, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 191, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-191", + "objType": "Box", + "posx": 0, + "posy": 3888, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 192, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-192", + "objType": "Box", + "posx": 0, + "posy": 3984, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 193, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-193", + "objType": "Box", + "posx": 0, + "posy": 4080, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 194, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-194", + "objType": "Box", + "posx": 0, + "posy": 4176, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 195, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-195", + "objType": "Box", + "posx": 0, + "posy": 4272, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 196, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-196", + "objType": "Box", + "posx": 0, + "posy": 4368, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 197, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-197", + "objType": "Box", + "posx": 0, + "posy": 4464, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 198, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-198", + "objType": "Box", + "posx": 0, + "posy": 4560, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 199, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-199", + "objType": "Box", + "posx": 0, + "posy": 4656, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 200, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-200", + "objType": "Box", + "posx": 0, + "posy": 4752, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 201, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-201", + "objType": "Box", + "posx": 0, + "posy": 4848, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 202, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-202", + "objType": "Box", + "posx": 0, + "posy": 4944, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 203, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-203", + "objType": "Box", + "posx": 0, + "posy": 5040, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 204, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-204", + "objType": "Box", + "posx": 0, + "posy": 5136, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 205, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-205", + "objType": "Box", + "posx": 0, + "posy": 5232, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 206, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-206", + "objType": "Box", + "posx": 0, + "posy": 5328, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 207, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-207", + "objType": "Box", + "posx": 0, + "posy": 5424, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 208, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-208", + "objType": "Box", + "posx": 0, + "posy": 5520, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 209, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-209", + "objType": "Box", + "posx": 0, + "posy": 5616, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 210, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-210", + "objType": "Box", + "posx": 0, + "posy": 5712, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 211, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-211", + "objType": "Box", + "posx": 0, + "posy": 5808, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 212, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-212", + "objType": "Box", + "posx": 0, + "posy": 5904, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 213, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-213", + "objType": "Box", + "posx": 0, + "posy": 6000, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 214, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-214", + "objType": "Box", + "posx": 0, + "posy": 6096, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 215, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-215", + "objType": "Box", + "posx": 0, + "posy": 6192, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 216, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-216", + "objType": "Box", + "posx": 0, + "posy": 6288, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 217, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-217", + "objType": "Box", + "posx": 0, + "posy": 6384, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 218, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-218", + "objType": "Box", + "posx": 0, + "posy": 6480, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 219, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-219", + "objType": "Box", + "posx": 0, + "posy": 6576, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 220, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-220", + "objType": "Box", + "posx": 0, + "posy": 6672, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 221, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-221", + "objType": "Box", + "posx": 0, + "posy": 6768, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 222, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-222", + "objType": "Box", + "posx": 0, + "posy": 6864, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 223, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-223", + "objType": "Box", + "posx": 0, + "posy": 6960, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 224, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-224", + "objType": "Box", + "posx": 0, + "posy": 7056, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 225, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-225", + "objType": "Box", + "posx": 0, + "posy": -48, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 226, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-226", + "objType": "Box", + "posx": 0, + "posy": -144, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 227, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-227", + "objType": "Box", + "posx": 0, + "posy": -240, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 228, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-228", + "objType": "Box", + "posx": 0, + "posy": -336, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 229, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-229", + "objType": "Box", + "posx": 0, + "posy": -432, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 230, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-230", + "objType": "Box", + "posx": 0, + "posy": -528, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 231, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-231", + "objType": "Box", + "posx": 0, + "posy": -624, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 232, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-232", + "objType": "Box", + "posx": 0, + "posy": -720, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 233, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-233", + "objType": "Box", + "posx": 0, + "posy": -816, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 234, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-234", + "objType": "Box", + "posx": 0, + "posy": -912, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 235, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-235", + "objType": "Box", + "posx": 0, + "posy": -1008, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 236, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-236", + "objType": "Box", + "posx": 0, + "posy": -1104, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 237, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-237", + "objType": "Box", + "posx": 0, + "posy": -1200, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 238, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-238", + "objType": "Box", + "posx": 0, + "posy": -1296, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 239, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-239", + "objType": "Box", + "posx": 0, + "posy": -1392, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 240, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-240", + "objType": "Box", + "posx": 0, + "posy": -1488, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 241, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-241", + "objType": "Box", + "posx": 0, + "posy": -1584, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 242, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-242", + "objType": "Box", + "posx": 0, + "posy": -1680, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 243, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-243", + "objType": "Box", + "posx": 0, + "posy": -1776, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 244, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-244", + "objType": "Box", + "posx": 0, + "posy": -1872, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 245, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-245", + "objType": "Box", + "posx": 0, + "posy": -1968, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 246, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-246", + "objType": "Box", + "posx": 0, + "posy": -2064, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 247, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-247", + "objType": "Box", + "posx": 0, + "posy": -2160, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 248, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-248", + "objType": "Box", + "posx": 0, + "posy": -2256, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 249, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-249", + "objType": "Box", + "posx": 0, + "posy": -2352, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 250, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-250", + "objType": "Box", + "posx": 0, + "posy": -2448, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 251, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-251", + "objType": "Box", + "posx": 0, + "posy": -2544, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 252, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-252", + "objType": "Box", + "posx": 0, + "posy": -2640, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 253, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-253", + "objType": "Box", + "posx": 0, + "posy": -2736, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 254, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-254", + "objType": "Box", + "posx": 0, + "posy": -2832, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 255, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-255", + "objType": "Box", + "posx": 0, + "posy": -2928, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 256, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-256", + "objType": "Box", + "posx": 0, + "posy": -3024, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 257, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-257", + "objType": "Box", + "posx": 0, + "posy": -3120, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 258, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-258", + "objType": "Box", + "posx": 0, + "posy": -3216, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 259, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-259", + "objType": "Box", + "posx": 0, + "posy": -3312, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 260, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-260", + "objType": "Box", + "posx": 0, + "posy": -3408, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 261, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-261", + "objType": "Box", + "posx": 0, + "posy": -3504, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 262, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-262", + "objType": "Box", + "posx": 0, + "posy": -3600, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 263, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-263", + "objType": "Box", + "posx": 0, + "posy": -3696, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 264, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-264", + "objType": "Box", + "posx": 0, + "posy": -3792, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 265, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-265", + "objType": "Box", + "posx": 0, + "posy": -3888, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 266, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-266", + "objType": "Box", + "posx": 0, + "posy": -3984, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 267, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-267", + "objType": "Box", + "posx": 0, + "posy": -4080, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 268, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-268", + "objType": "Box", + "posx": 0, + "posy": -4176, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 269, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-269", + "objType": "Box", + "posx": 0, + "posy": -4272, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 270, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-270", + "objType": "Box", + "posx": 0, + "posy": -4368, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 271, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-271", + "objType": "Box", + "posx": 0, + "posy": -4464, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 272, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-272", + "objType": "Box", + "posx": 0, + "posy": -4560, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 273, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-273", + "objType": "Box", + "posx": 0, + "posy": -4656, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 274, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-274", + "objType": "Box", + "posx": 0, + "posy": -4752, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 275, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-275", + "objType": "Box", + "posx": 0, + "posy": -4848, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 276, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-276", + "objType": "Box", + "posx": 0, + "posy": -4944, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 277, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-277", + "objType": "Box", + "posx": 0, + "posy": -5040, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 278, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-278", + "objType": "Box", + "posx": 0, + "posy": -5136, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 279, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-279", + "objType": "Box", + "posx": 0, + "posy": -5232, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 280, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-280", + "objType": "Box", + "posx": 0, + "posy": -5328, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 281, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-281", + "objType": "Box", + "posx": 0, + "posy": -5424, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 282, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-282", + "objType": "Box", + "posx": 0, + "posy": -5520, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 283, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-283", + "objType": "Box", + "posx": 0, + "posy": -5616, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 284, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-284", + "objType": "Box", + "posx": 0, + "posy": -5712, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 285, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-285", + "objType": "Box", + "posx": 0, + "posy": -5808, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 286, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-286", + "objType": "Box", + "posx": 0, + "posy": -5904, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 287, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-287", + "objType": "Box", + "posx": 0, + "posy": -6000, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 288, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-288", + "objType": "Box", + "posx": 0, + "posy": -6096, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 289, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-289", + "objType": "Box", + "posx": 0, + "posy": -6192, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 290, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-290", + "objType": "Box", + "posx": 0, + "posy": -6288, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 291, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-291", + "objType": "Box", + "posx": 0, + "posy": -6384, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 292, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-292", + "objType": "Box", + "posx": 0, + "posy": -6480, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 293, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-293", + "objType": "Box", + "posx": 0, + "posy": -6576, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 294, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-294", + "objType": "Box", + "posx": 0, + "posy": -6672, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 295, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-295", + "objType": "Box", + "posx": 0, + "posy": -6768, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 296, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-296", + "objType": "Box", + "posx": 0, + "posy": -6864, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 297, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-297", + "objType": "Box", + "posx": 0, + "posy": -6960, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 16000, + "dim-1": 0.1, + "dim-2": 16000, + "id": 298, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "yellow", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-298", + "objType": "Box", + "posx": 0, + "posy": -7056, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + } + ], + "physics": "FTFP_BERT", + "record": [ + { + "filterParticleIds": "", + "recordEnergy": true, + "recordMomentum": true, + "recordPosition": true, + "recordProcessName": false, + "recordTiming": true + } + ], + "ui": [ + { + "active-out-widget": 0, + "macro-script": "", + "scratch": "" + } + ] +} diff --git a/deploy-tools/models/bragg-peak.sim b/deploy-tools/models/bragg-peak.sim new file mode 100644 index 0000000..bf17c2a --- /dev/null +++ b/deploy-tools/models/bragg-peak.sim @@ -0,0 +1,127 @@ +{ + "gun": [ + { + "dimX": 0, + "dimY": 0, + "dimZ": 0, + "gpsshapePlane": "XY plane", + "ionA": 60, + "ionZ": 27, + "nevents": 10000, + "particleSource": true, + "particleType": "proton", + "posX": 0, + "posY": 0, + "posZ": 500, + "showevents": false, + "sourceShape": "Point" + }, + { + "angularDist": "none", + "dirx": 0, + "diry": 0, + "dirz": -1, + "phi_max": 0, + "phi_min": 0, + "sigma": 0, + "theta_max": 0, + "theta_min": 0 + }, + { + "emax": 500, + "emin": 100, + "espectParam1": 0, + "espectParam2": 0, + "espectParam3": 0, + "espectType": "Monoenergetic", + "polx": 0, + "poly": 0, + "polz": -1 + } + ], + "meshes": [ + { + "binsx": 1, + "binsy": 1, + "binsz": 500, + "dim-0": 10, + "dim-1": 10, + "dim-2": 500, + "mesh_id": 4, + "mesh_name": "Box-Mesh-004", + "mesh_type": "Box", + "posx": 0, + "posy": 0, + "posz": 0, + "rotx": 0, + "roty": 0, + "rotz": 0, + "scoring_filter": "", + "scoring_qty": "energyDeposit" + } + ], + "objects": [ + { + "dim-0": 11, + "dim-1": 11, + "dim-2": 500, + "id": 0, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "gray", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "World", + "objType": "Box", + "posx": 0, + "posy": 0, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 10, + "dim-1": 10, + "dim-2": 499, + "id": 1, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "gray", + "objMaterial": "G4_WATER", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-001", + "objType": "Box", + "posx": 0, + "posy": 0, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + } + ], + "physics": "FTFP_BERT", + "record": [ + { + "filterParticleIds": "", + "recordEnergy": true, + "recordMomentum": true, + "recordPosition": true, + "recordProcessName": false, + "recordTiming": true + } + ], + "ui": [ + { + "active-out-widget": 1, + "macro-script": "", + "scratch": "" + } + ] +} diff --git a/deploy-tools/models/cerenkov.sim b/deploy-tools/models/cerenkov.sim new file mode 100644 index 0000000..40ae8ef --- /dev/null +++ b/deploy-tools/models/cerenkov.sim @@ -0,0 +1,105 @@ +{ + "gun": [ + { + "dimX": 0, + "dimY": 0, + "dimZ": 0, + "gpsshapePlane": "XY plane", + "ionA": 60, + "ionZ": 27, + "nevents": 1, + "particleSource": true, + "particleType": "e-", + "posX": 0, + "posY": 0, + "posZ": 0, + "showevents": true, + "sourceShape": "Point" + }, + { + "angularDist": "none", + "dirx": 0, + "diry": 0, + "dirz": -1, + "phi_max": 0, + "phi_min": 0, + "sigma": 0, + "theta_max": 0, + "theta_min": 0 + }, + { + "emax": 500, + "emin": 100, + "espectParam1": 0, + "espectParam2": 0, + "espectParam3": 0, + "espectType": "Monoenergetic", + "polx": 0, + "poly": 0, + "polz": -1 + } + ], + "meshes": [ + { + "binsx": 50, + "binsy": 50, + "binsz": 1, + "dim-0": 1000, + "dim-1": 1000, + "dim-2": 1, + "mesh_id": 0, + "mesh_name": "Box-Mesh-000", + "mesh_type": "Box", + "posx": 0, + "posy": 0, + "posz": 0, + "rotx": 0, + "roty": 0, + "rotz": 0, + "scoring_filter": "", + "scoring_qty": "flatSurfaceCurrent" + } + ], + "objects": [ + { + "dim-0": 1000, + "dim-1": 1000, + "dim-2": 1000, + "id": 0, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "gray", + "objMaterial": "CERENKOVWATER", + "objMaterialFormula": "G4_WATER", + "objMaterialProps": "", + "objName": "World", + "objType": "Box", + "posx": 0, + "posy": 0, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + } + ], + "physics": "Optical (Cerenkov / Scintillation)", + "record": [ + { + "filterParticleIds": "", + "recordEnergy": true, + "recordMomentum": true, + "recordPosition": true, + "recordProcessName": false, + "recordTiming": true + } + ], + "ui": [ + { + "active-out-widget": 3, + "macro-script": "", + "scratch": "DEMOSTRATION OF CERENKOV RADIATION \n\nThis is a simple geometry consisting of only the world volume with water (with modified properties, named as CERENKOV WATER).\nShooting one electron or muon is sufficient to see the Cerenkov Cone. One can use a scoring mesh to see the ring patterns for electrons and muons. " + } + ] +} diff --git a/deploy-tools/models/cobalt-decay.sim b/deploy-tools/models/cobalt-decay.sim new file mode 100644 index 0000000..4dcb3c5 --- /dev/null +++ b/deploy-tools/models/cobalt-decay.sim @@ -0,0 +1,111 @@ +{ + "gun": [ + { + "dimX": 0, + "dimY": 0, + "dimZ": 0, + "gpsshapePlane": "XY plane", + "ionA": 60, + "ionZ": 27, + "nevents": 10000, + "particleSource": false, + "particleType": "e+", + "posX": 0, + "posY": 0, + "posZ": 0, + "showevents": false, + "sourceShape": "Point" + }, + { + "angularDist": "none", + "dirx": 0, + "diry": 0, + "dirz": -1, + "phi_max": 0, + "phi_min": 0, + "sigma": 0, + "theta_max": 0, + "theta_min": 0 + }, + { + "emax": 500, + "emin": 0, + "espectParam1": 0, + "espectParam2": 0, + "espectParam3": 0, + "espectType": "Monoenergetic", + "polx": 0, + "poly": 0, + "polz": -1 + } + ], + "meshes": [ + ], + "objects": [ + { + "dim-0": 100, + "dim-1": 100, + "dim-2": 100, + "id": 0, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "gray", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "World", + "objType": "Box", + "posx": 0, + "posy": 0, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 9.9, + "dim-1": 10, + "dim-2": 0, + "dim-3": 360, + "dim-4": 0, + "dim-5": 180, + "id": 1, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "gray", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Sphere-001", + "objType": "Sphere", + "posx": 0, + "posy": 0, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + } + ], + "physics": "Radioactive decay", + "record": [ + { + "filterParticleIds": "", + "recordEnergy": true, + "recordMomentum": true, + "recordPosition": true, + "recordProcessName": false, + "recordTiming": true + } + ], + "ui": [ + { + "active-out-widget": 1, + "macro-script": "", + "scratch": "" + } + ] +} diff --git a/deploy-tools/models/gold-foil.sim b/deploy-tools/models/gold-foil.sim new file mode 100644 index 0000000..98bca4c --- /dev/null +++ b/deploy-tools/models/gold-foil.sim @@ -0,0 +1,133 @@ +{ + "gun": [ + { + "dimX": 0, + "dimY": 0, + "dimZ": 0, + "gpsshapePlane": "XY plane", + "ionA": 60, + "ionZ": 27, + "nevents": 100, + "particleSource": true, + "particleType": "alpha", + "posX": 0, + "posY": 0, + "posZ": 0, + "showevents": true, + "sourceShape": "Point" + }, + { + "angularDist": "none", + "dirx": 0, + "diry": 0, + "dirz": 1, + "phi_max": 0, + "phi_min": 0, + "sigma": 0, + "theta_max": 0, + "theta_min": 0 + }, + { + "emax": 500, + "emin": 5, + "espectParam1": 0, + "espectParam2": 0, + "espectParam3": 0, + "espectType": "Monoenergetic", + "polx": 0, + "poly": 0, + "polz": -1 + } + ], + "meshes": [ + ], + "objects": [ + { + "dim-0": 100, + "dim-1": 100, + "dim-2": 100, + "id": 0, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "gray", + "objMaterial": "G4_Galactic", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "World", + "objType": "Box", + "posx": 0, + "posy": 0, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 10, + "dim-1": 10, + "dim-2": 0.004, + "id": 1, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "gray", + "objMaterial": "G4_Au", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-001", + "objType": "Box", + "posx": 0, + "posy": 0, + "posz": 2, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 9.9, + "dim-1": 10, + "dim-2": 0, + "dim-3": 360, + "dim-4": 0, + "dim-5": 180, + "id": 2, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "gray", + "objMaterial": "G4_Galactic", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Sphere-002", + "objType": "Sphere", + "posx": 0, + "posy": 0, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + } + ], + "physics": "FTFP_BERT", + "record": [ + { + "filterParticleIds": "", + "recordEnergy": true, + "recordMomentum": true, + "recordPosition": true, + "recordProcessName": false, + "recordTiming": true + } + ], + "ui": [ + { + "active-out-widget": 0, + "macro-script": "\n", + "scratch": "The famous gold-foil experiment.\nShoot at least 50000 particles and see the angular distribution\nThe description of the setup is given in https://royalsocietypublishing.org/doi/pdf/10.1098/rspa.1909.0054\n\nUse this plotting command after simulating to get the angular distribution\nabs(posz)/posz*acos(sqrt(posx*posx+posz*posz)/sqrt(posx*posx+posy*posy+posz*posz))*180/3.14\n\nAs mentioned in the paper, the back reflections were about 1/20,000, for 50,000 you must see at least 2 back refections.\n\nhttp://web.mit.edu/wangfire/pub8.13/rutherpaper.pdf" + } + ] +} diff --git a/deploy-tools/models/mICAL.sim b/deploy-tools/models/mICAL.sim new file mode 100644 index 0000000..f985d8a --- /dev/null +++ b/deploy-tools/models/mICAL.sim @@ -0,0 +1,504 @@ +{ + "gun": [ + { + "dimX": 0, + "dimY": 0, + "dimZ": 0, + "gpsshapePlane": "XY plane", + "ionA": 60, + "ionZ": 27, + "nevents": 10, + "particleSource": true, + "particleType": "mu-", + "posX": 0, + "posY": 455, + "posZ": 0, + "showevents": true, + "sourceShape": "Point" + }, + { + "angularDist": "none", + "dirx": 0, + "diry": -1, + "dirz": 0, + "phi_max": 0, + "phi_min": 0, + "sigma": 0, + "theta_max": 0, + "theta_min": 0 + }, + { + "emax": 500, + "emin": 1000, + "espectParam1": 0, + "espectParam2": 0, + "espectParam3": 0, + "espectType": "Monoenergetic", + "polx": 0, + "poly": 0, + "polz": -1 + } + ], + "meshes": [ + ], + "objects": [ + { + "dim-0": 1200, + "dim-1": 1000, + "dim-2": 1200, + "id": 0, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "gray", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "World", + "objType": "Box", + "posx": 0, + "posy": 0, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 1000, + "dim-1": 56, + "dim-2": 1000, + "id": 1, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-001", + "objType": "Box", + "posx": 0, + "posy": 450, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 1000, + "dim-1": 56, + "dim-2": 1000, + "id": 11, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-011", + "objType": "Box", + "posx": 0, + "posy": 360, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 1000, + "dim-1": 56, + "dim-2": 1000, + "id": 12, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-012", + "objType": "Box", + "posx": 0, + "posy": 270, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 1000, + "dim-1": 56, + "dim-2": 1000, + "id": 13, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-013", + "objType": "Box", + "posx": 0, + "posy": 180, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 1000, + "dim-1": 56, + "dim-2": 1000, + "id": 14, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-014", + "objType": "Box", + "posx": 0, + "posy": 90, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 1000, + "dim-1": 56, + "dim-2": 1000, + "id": 15, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-015", + "objType": "Box", + "posx": 0, + "posy": 0, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 1000, + "dim-1": 56, + "dim-2": 1000, + "id": 16, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-016", + "objType": "Box", + "posx": 0, + "posy": -90, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 1000, + "dim-1": 56, + "dim-2": 1000, + "id": 17, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-017", + "objType": "Box", + "posx": 0, + "posy": -180, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 1000, + "dim-1": 56, + "dim-2": 1000, + "id": 18, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-018", + "objType": "Box", + "posx": 0, + "posy": -270, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 1000, + "dim-1": 56, + "dim-2": 1000, + "id": 19, + "magx": 15000, + "magy": 0, + "magz": 0, + "objColor": "blue", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-019", + "objType": "Box", + "posx": 0, + "posy": -360, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 1000, + "dim-1": 0.01, + "dim-2": 1000, + "id": 20, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "gray", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-020", + "objType": "Box", + "posx": 0, + "posy": -315, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 1000, + "dim-1": 0.01, + "dim-2": 1000, + "id": 21, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "gray", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-021", + "objType": "Box", + "posx": 0, + "posy": -225, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 1000, + "dim-1": 0.01, + "dim-2": 1000, + "id": 22, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "gray", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-022", + "objType": "Box", + "posx": 0, + "posy": -135, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 1000, + "dim-1": 0.01, + "dim-2": 1000, + "id": 23, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "gray", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-023", + "objType": "Box", + "posx": 0, + "posy": -45, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 1000, + "dim-1": 0.01, + "dim-2": 1000, + "id": 24, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "gray", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-024", + "objType": "Box", + "posx": 0, + "posy": 45, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 1000, + "dim-1": 0.01, + "dim-2": 1000, + "id": 25, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "gray", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-025", + "objType": "Box", + "posx": 0, + "posy": 135, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 1000, + "dim-1": 0.01, + "dim-2": 1000, + "id": 26, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "gray", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-026", + "objType": "Box", + "posx": 0, + "posy": 225, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 1000, + "dim-1": 0.01, + "dim-2": 1000, + "id": 27, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "gray", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-027", + "objType": "Box", + "posx": 0, + "posy": 315, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 1000, + "dim-1": 0.01, + "dim-2": 1000, + "id": 28, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "gray", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-028", + "objType": "Box", + "posx": 0, + "posy": 405, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + } + ], + "physics": "FTFP_BERT", + "record": [ + { + "filterParticleIds": "", + "recordEnergy": true, + "recordMomentum": true, + "recordPosition": true, + "recordProcessName": false, + "recordTiming": true + } + ], + "ui": [ + { + "active-out-widget": 0, + "macro-script": "", + "scratch": "" + } + ] +} diff --git a/deploy-tools/models/musr.sim b/deploy-tools/models/musr.sim new file mode 100644 index 0000000..01e8033 --- /dev/null +++ b/deploy-tools/models/musr.sim @@ -0,0 +1,152 @@ +{ + "gun": [ + { + "dimX": 0, + "dimY": 0, + "dimZ": 0, + "gpsshapePlane": "XY plane", + "ionA": 60, + "ionZ": 27, + "nevents": 100000, + "particleSource": true, + "particleType": "mu+", + "posX": 0, + "posY": 0, + "posZ": 0, + "showevents": false, + "sourceShape": "Point" + }, + { + "angularDist": "none", + "dirx": 0, + "diry": 0, + "dirz": -1, + "phi_max": 0, + "phi_min": 0, + "sigma": 0, + "theta_max": 0, + "theta_min": 0 + }, + { + "emax": 500, + "emin": 0, + "espectParam1": 0, + "espectParam2": 0, + "espectParam3": 0, + "espectType": "Monoenergetic", + "polx": 0, + "poly": 1, + "polz": 0 + } + ], + "meshes": [ + ], + "objects": [ + { + "dim-0": 100, + "dim-1": 10, + "dim-2": 100, + "id": 0, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "gray", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "World", + "objType": "Box", + "posx": 0, + "posy": 0, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 90, + "dim-1": 0.1, + "dim-2": 90, + "id": 1, + "magx": 150, + "magy": 0, + "magz": 0, + "objColor": "gray", + "objMaterial": "G4_Fe", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-001", + "objType": "Box", + "posx": 0, + "posy": 0, + "posz": 0, + "record_data": false, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 90, + "dim-1": 0.1, + "dim-2": 90, + "id": 2, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "gray", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-002", + "objType": "Box", + "posx": 0, + "posy": 4.6, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + }, + { + "dim-0": 90, + "dim-1": 0.1, + "dim-2": 90, + "id": 3, + "magx": 0, + "magy": 0, + "magz": 0, + "objColor": "gray", + "objMaterial": "G4_AIR", + "objMaterialFormula": "", + "objMaterialProps": "", + "objName": "Box-003", + "objType": "Box", + "posx": 0, + "posy": -4.6, + "posz": 0, + "record_data": true, + "rotx": 0, + "roty": 0, + "rotz": 0 + } + ], + "physics": "Muon decay with spin", + "record": [ + { + "filterParticleIds": "-11", + "recordEnergy": true, + "recordMomentum": true, + "recordPosition": true, + "recordProcessName": false, + "recordTiming": true + } + ], + "ui": [ + { + "active-out-widget": 3, + "macro-script": "", + "scratch": "A simple simulation of Muon spin rotation\n\nA thin Iron plate with a magnetic field of 150 Gauss is kept in between two thin plates. \n\nMuons at rest are shot from the origin with the polarization along y axis.\n\nPlotting the globTime>>hx(1000) with the condition detectorId==\"Box-003\" shows the oscillations riding over the decay curve.\n\nThe Larmor frequency for muons is about 135 MHz/T which leads to 2 MHz oscillations for 150 Gauss, leading to about 0.5 us period, this was clearly seen in the demonstration\n" + } + ] +} diff --git a/simple.pro b/simple.pro index 4cd6f4f..a72f5cf 100644 --- a/simple.pro +++ b/simple.pro @@ -182,7 +182,14 @@ DISTFILES += \ deploy-tools/app-files/simple.png \ macros/visupdate.mac \ macros/visinit.mac \ - models/gold-foil.sim + models/gold-foil.sim \ + deploy-tools/models/gold-foil.sim \ + deploy-tools/models/musr.sim \ + deploy-tools/models/mICAL.sim \ + deploy-tools/models/cobalt-decay.sim \ + deploy-tools/models/cerenkov.sim \ + deploy-tools/models/bragg-peak.sim \ + deploy-tools/models/ICAL2.sim RESOURCES += \ resources.qrc diff --git a/simple.ui b/simple.ui index 67b9e5d..bc5d2db 100644 --- a/simple.ui +++ b/simple.ui @@ -966,6 +966,19 @@ + + + + + 0 + 0 + + + + Current view: No file! + + +