Skip to content
Snippets Groups Projects
Commit 8b94c007 authored by Hernán Asorey's avatar Hernán Asorey
Browse files

Trace for rectangular of cubic WC detectors is now included.

parent 03e57e26
No related branches found
No related tags found
No related merge requests found
......@@ -104,7 +104,7 @@ make fullclean # executes clean and simclean directives
### Additional package
An additional tool, <kbd>Trace</kbd> is included. It can be used to calculate the trace lenght distribution of muons going thought the detector. To configure it, two blocks inside the main code should be modified. So:
Two additional tools, <kbd>Trace</kbd> and <kbd>TraceCubic</kbd> are included. It can be used to calculate the trace lenght distribution of muons going thought a cylindrical or rectangular (even cubic) detector. To configure it, two blocks inside the main code should be modified. So:
```bash
vim src/trace.cc
```
......@@ -133,3 +133,4 @@ cd $LAGO_EASY
make
./bin/Trace
```
and the same for TraceCubic.
......@@ -4,7 +4,7 @@ LINKFLAGS= `root-config --libs`
SRC=Event.o Station.o Array.o Particle.o EventDict.o ShowerParam.o Utils.o BuildProcessesTables.o FastSimulation.o ManageEvent.o EasySimConfig.o Analyze.o AnaDict.o
TARGETS=EasySim Ascii Trace
TARGETS=EasySim Ascii Trace TraceCubic
all: $(TESTS) $(TARGETS)
......@@ -26,6 +26,9 @@ Ascii: ${SRC} Ascii.o
Trace:
$(CC) -o $@ trace.cc
TraceCubic:
$(CC) -o $@ trace-cubic.cc
clean:
rm -f $(TARGETS) *.o *Dict*
......
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