##// END OF EJS Templates
Added ToLilBlock class from Roberto
Added ToLilBlock class from Roberto

File last commit:

r1774:e7bb496918b2
r1789:2739006ee497 isr_v2
Show More
get_path.f
17 lines | 440 B | text/x-fortran | FortranFixedLexer
Faraday manual processing improved
r1774
subroutine get_path(fqual_temp)
c
c create table of magnetic field components
c
c character*47 L
character(1024) :: fqual_temp
character(512) :: ppath
character(512) :: cpath
ppath = "/home/cportilla/DIR_MADRIGAL/schain"
cpath = "/schainf/Ffiles/bfmodel/"
c write(*,*) "Len:", L
fqual_temp = TRIM(ppath)//TRIM(cpath)
c write(*,*) "Len:", fqual_temp
return
end