tstGammaSpectra.f90

./Core/dc/f/tests/tstGammaSpectra.f90

1 program tstgammaspectra
2 
3 #include "ScaleSTL/FortranTestMacros.h"
4 
6 use scalestl_vec_dbl_m
7 
8 implicit none
9 
10 type(origen_gammaspectra) :: gamma_spectra
11 type(scalestl_vec_dbl) :: bounds
12 type(scalestl_vec_dbl) :: intensity
13 integer,parameter :: i=c_size_t
14 
15 call gamma_spectra % initialize()
16 expect_true(gamma_spectra % has_bounds() )
17 expect_true(gamma_spectra % has_intensity() )
18 
19 call gamma_spectra % destroy()
20 
21 end program