Line data Source code
1 : /** 2 : \file lineshapes.cpp 3 : Bojan Nikolic <bn204@mrao.cam.ac.uk>, <bojan@bnikolic.co.uk> 4 : 5 : Initial version February 2008 6 : Maintained by ESO since 2013. 7 : Renamed lineshapes.cc 2023 8 : 9 : */ 10 : 11 : #include "lineshapes.h" 12 : #include "lineparams.h" 13 : 14 : namespace LibAIR2 { 15 : 16 0 : double CGrossLine(double f, 17 : const CLineParams & cp) 18 : { 19 0 : return GrossLine( f, 20 0 : cp.f0, cp.gamma, cp.S); 21 : } 22 : 23 : } 24 : 25 :