Skip to content
Snippets Groups Projects
Commit 378d73fe authored by Whitney Armstrong's avatar Whitney Armstrong
Browse files

modified: getting-started/quickstart.mdx

	modified:   part1/simple_detector.md
parent 7b4fd462
No related branches found
No related tags found
No related merge requests found
Pipeline #10104 passed
...@@ -62,7 +62,7 @@ Later on, we will com back to these detector repositories. ...@@ -62,7 +62,7 @@ Later on, we will com back to these detector repositories.
Before moving on to part 1, let's generate the geometry in a root file: Before moving on to part 1, let's generate the geometry in a root file:
``` ```bash
cd athena cd athena
dd_web_display --export athena.xml dd_web_display --export athena.xml
``` ```
...@@ -73,7 +73,6 @@ Then open the [web viewer](https://eic.phy.anl.gov/geoviewer/), click on the `.. ...@@ -73,7 +73,6 @@ Then open the [web viewer](https://eic.phy.anl.gov/geoviewer/), click on the `..
Or if you want to skip this just [click here to view the latest detector](https://eic.phy.anl.gov/geoviewer/index.htm?file=https://eicweb.phy.anl.gov/api/v4/projects/473/jobs/artifacts/master/raw/geo/detector_geo_full.root?job=report&item=default;1&opt=clipxyz;transp30;zoom75;ROTY290;ROTZ350;trz0;trr0;ctrl;all&). Or if you want to skip this just [click here to view the latest detector](https://eic.phy.anl.gov/geoviewer/index.htm?file=https://eicweb.phy.anl.gov/api/v4/projects/473/jobs/artifacts/master/raw/geo/detector_geo_full.root?job=report&item=default;1&opt=clipxyz;transp30;zoom75;ROTY290;ROTZ350;trz0;trr0;ctrl;all&).
In your browser
......
...@@ -25,7 +25,7 @@ directories named compact (but not always). ...@@ -25,7 +25,7 @@ directories named compact (but not always).
## Compile the detector library ## Compile the detector library
``` ```bash
mkdir build mkdir build
cmake ../. -DCMAKE_INSTALL_PREFIX=../../local cmake ../. -DCMAKE_INSTALL_PREFIX=../../local
make -j4 install make -j4 install
...@@ -34,7 +34,7 @@ make -j4 install ...@@ -34,7 +34,7 @@ make -j4 install
## Look at geometry ## Look at geometry
``` ```bash
dd_web_display --export gem_tracker.xml dd_web_display --export gem_tracker.xml
``` ```
Copy the generated file `detector_geometry.root` to your local machine. Copy the generated file `detector_geometry.root` to your local machine.
...@@ -42,16 +42,16 @@ Then open the [web viewer](https://eic.phy.anl.gov/geoviewer/), click on the `.. ...@@ -42,16 +42,16 @@ Then open the [web viewer](https://eic.phy.anl.gov/geoviewer/), click on the `..
```xml ```xml
<detector id="2" name="GEMTracker" vis="RedVis" type="my_GEMTracker" readout="GEMTrackerHits" > <detector id="2" name="GEMTracker" vis="RedVis" type="my_GEMTracker" readout="GEMTrackerHits" >
<layer id="1" z="-100 *cm" inner_r="40*cm" outer_r="120*cm" phi0_offset="0.0*deg" /> <layer id="1" z="-100 *cm" inner_r="40*cm" outer_r="120*cm" phi0_offset="0.0*deg" />
<layer id="2" z="-80 *cm" inner_r="30*cm" outer_r="90*cm" phi0_offset="0.0*deg" /> <layer id="2" z="-80 *cm" inner_r="30*cm" outer_r="90*cm" phi0_offset="0.0*deg" />
<layer id="3" z="-60 *cm" inner_r="20*cm" outer_r="70*cm" phi0_offset="0.0*deg" /> <layer id="3" z="-60 *cm" inner_r="20*cm" outer_r="70*cm" phi0_offset="0.0*deg" />
<layer id="4" z="-40 *cm" inner_r="20*cm" outer_r="50.0*cm" phi0_offset="0.0*deg" /> <layer id="4" z="-40 *cm" inner_r="20*cm" outer_r="50.0*cm" phi0_offset="0.0*deg" />
<layer id="5" z=" 40 *cm" inner_r="20*cm" outer_r="50.0*cm" phi0_offset="0.0*deg" /> <layer id="5" z=" 40 *cm" inner_r="20*cm" outer_r="50.0*cm" phi0_offset="0.0*deg" />
<layer id="6" z=" 60 *cm" inner_r="25*cm" outer_r="70.0*cm" phi0_offset="0.0*deg" /> <layer id="6" z=" 60 *cm" inner_r="25*cm" outer_r="70.0*cm" phi0_offset="0.0*deg" />
<layer id="7" z=" 80 *cm" inner_r="30*cm" outer_r="90.0*cm" phi0_offset="0.0*deg" /> <layer id="7" z=" 80 *cm" inner_r="30*cm" outer_r="90.0*cm" phi0_offset="0.0*deg" />
<layer id="8" z="100 *cm" inner_r="40*cm" outer_r="100.0*cm" phi0_offset="0.0*deg" /> <layer id="8" z="100 *cm" inner_r="40*cm" outer_r="100.0*cm" phi0_offset="0.0*deg" />
</detector> </detector>
``` ```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment