Test alfa sensitive detector
In the branch, I tested the class called ALFA_SensitiveDetector
in the package ForwardDetectors/ALFA/ALFA_G4_SD
. Here
is what I did about the package.
- I put my test code
ALFA_SensitiveDetector_gtest.cxx
in thetest
folder. And it is for testing the classALFA_SensitiveDetector
. - I created the jobOption file
optionForTest.txt
, which is placed in the share folder. - In oder to add my test classes as friends of the tested classes, I add several lines for that.
- Of course, I add some lines in the CMakeLists.txt for compiling my test code, using google test frame work, and so on.
- I create 3 files and put them into the folder
Simulation/G4Atlas/G4AtlasTools/G4AtlasTools
. The 1st file isDerivedG4SensitiveDetectorTestSetting.h
, where I define a function for setting G4-objects to G4Step object. The 2nd file isG4MyPhysicalVolume.h
, where I define a class calledG4MyPhysicalVolume
that is derived fromG4VPhysicalVolume
. The 3rd file isG4MyProcess.h
, where I define a class calledG4MyProcess
that is derived fromG4VProcess
. - It is worth mentioning that I use different TEST_F to test different member functions of the tested class.
Edited by Liangliang Han