The TRP code consists of a total of 9631 lines of code in 46 programs, distributed in three separate directories (numbers for version trp_gui-00-00-19).
|
|
|
1 |
gdb |
Opens the gdb debugger software |
2 |
file ./x86_64-slc6-gcc47-opt/trpgui |
Defines a file to work on |
3 |
b trp_mainwindow.cpp::654 |
Creates a breakpoint. Can defines as many breakpoints as needed |
4 |
run ./x86_64-slc6-gcc47-opt/trpgui -c share/trp_gui_conf.xml -p ATLAS -f TriggerRates _ATLAS_208189.root |
Runs the TRP on gdb |
5 |
c |
Continues to run until the next breakpoint |
6 |
n |
Next line in code |
7 |
s |
Next step in code |
8 |
up |
Previous step in code |
9 |
p var |
Print the value of a variable |
10 |
|
Wait for crash to happen |
11 |
bt |
Backtrace |
12 |
frame n |
Display line # n before crash (n=0 at crash) |
13 |
kill |
Kills the program execution |
14 |
q |
Quits gdb |