add preprocessor for Qk.h

This commit is contained in:
Ryan Tang 2022-10-13 13:01:12 -04:00
parent 1936f994d6
commit d71f18d52e

7
Qk.h
View File

@ -1,3 +1,8 @@
#ifndef QK_H
#define QK_H
#include <cstdio>
double TauCal(double Energy_MeV){
double E_log = log(Energy_MeV);
@ -247,3 +252,5 @@ double QK2(double Energy, double radius, double distance, double thickness){
*/
return QD2;
}
#endif