Skip to content

Commit

Permalink
Developers Guide Established
Browse files Browse the repository at this point in the history
- Developers Guide Added (tex file + pdf)
- Test Data File added (top_focus_precise)
- *.pro files added to compile using qmake
  • Loading branch information
garankonic committed May 20, 2016
1 parent e77e8c1 commit 615d2d9
Show file tree
Hide file tree
Showing 14 changed files with 416 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Thumbs.db
#ignore certain template files
src/template.cc
testdata/*
developers_guide/*

#ignore qt project files
*.pro
*.pro.user
25 changes: 25 additions & 0 deletions TBrowser.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#-------------------------------------------------
#
# Project created by QtCreator 2015-11-04T19:44:29
#
#-------------------------------------------------

QT -= core gui

greaterThan(QT_MAJOR_VERSION, 4): QT -= widgets

TARGET = tbrowser
TEMPLATE = app

# For Windows
win32:LIBS += -LC:\root\root_v5.34.34\lib -llibCore -llibMathCore -llibTree -llibCint -llibRIO -llibNet -llibThread -llibGpad -llibGraf -llibRint -llibHist -llibMatrix
win32:INCLUDEPATH += C:\root\root_v5.34.34\include\
# For Linux
unix:LIBS += -L/home/maren/GEANT4/root_v5.34.34_install/lib/root -lCore -lMathCore -lTree -lCint -lRIO -lNet -lThread -lHist -lMatrix
unix:INCLUDEPATH += /home/maren/GEANT4/root_v5.34.34_install/include/root\

SOURCES += \
src/tbrowser.cxx

76 changes: 76 additions & 0 deletions TCT-analysis.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
TARGET = tct-analysis
TEMPLATE = app
CONFIG += console
CONFIG -= app_bundle
CONFIG += qt

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

DEFINES += USE_GUI=1

# For Windows
win32:LIBS += -LC:\root\root_v5.34.34\lib -llibCore -llibMathCore -llibTree -llibCint -llibRIO -llibNet -llibThread -llibGpad -llibGraf -llibRint -llibHist -llibMatrix
win32:INCLUDEPATH += C:\root\root_v5.34.34\include\

# For Linux
unix:QMAKE_CXXFLAGS += -std=c++11
unix:LIBS += -L/home/maren/GEANT4/root_v5.34.34_install/lib/root -lCore -lMathCore -lTree -lCint -lRIO -lNet -lThread -lHist -lMatrix
unix:INCLUDEPATH += /home/maren/GEANT4/root_v5.34.34_install/include/root\

# General
INCLUDEPATH += include

HEADERS += \
include/modules/ModuleEdgeDepletion.h \
include/modules/ModuleEdgeField.h \
include/modules/ModuleEdgeFocus.h \
include/modules/ModuleLaserAnalysis.h \
include/modules/ModuleTopDepletion.h \
include/modules/ModuleTopFocus.h \
include/modules/ModuleTopMobility.h \
include/acquisition.h \
include/analysis.h \
include/base.h \
include/gui_consoleoutput.h \
include/gui_folders.h \
include/gui_sample.h \
include/measurement.h \
include/param.h \
include/qdebugstream.h \
include/sample.h \
include/scanning.h \
include/tct_config.h \
include/TCTModule.h \
include/TCTReader.h \
include/util.h

SOURCES += \
src/modules/ModuleEdgeDepletion.cc \
src/modules/ModuleEdgeField.cc \
src/modules/ModuleEdgeFocus.cc \
src/modules/ModuleLaserAnalysis.cc \
src/modules/ModuleTopDepletion.cc \
src/modules/ModuleTopFocus.cc \
src/modules/ModuleTopMobility.cc \
src/acquisition.cc \
src/analysis.cc \
src/base.cc \
src/gui_folders.cc \
src/gui_sample.cc \
src/main_gui.cxx \
src/measurement.cc \
src/sample.cc \
src/scanning.cc \
src/tct_config.cc \
src/TCTModule.cc \
src/TCTReader.cc \
src/util.cc

FORMS += \
forms/form_sample.ui \
forms/form_parameters.ui \
forms/form_folders.ui \
forms/base.ui



Binary file added developers_guide/pics/desy.pdf
Binary file not shown.
Binary file added developers_guide/pics/knu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added developers_guide/pics/lpnhe.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added developers_guide/pics/main_structure.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added developers_guide/pics/main_window.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading

0 comments on commit 615d2d9

Please sign in to comment.