2023-04-03 16:03:48 -04:00
|
|
|
CC=g++
|
|
|
|
|
2024-02-20 16:38:40 -05:00
|
|
|
ALL = Isotope InFileCreator ExtractXSec ExtractXSecFromText PlotTGraphTObjArray Cleopatra FindThetaCM Transfer SimAlpha
|
2023-04-10 15:56:31 -04:00
|
|
|
|
|
|
|
all: $(ALL)
|
2023-04-03 16:03:48 -04:00
|
|
|
|
2024-02-19 18:31:27 -05:00
|
|
|
Isotope: ../Cleopatra/ClassIsotope.h ../Cleopatra/Isotope.C
|
|
|
|
$(CC) Isotope.C -o Isotope
|
|
|
|
|
2024-02-13 18:24:56 -05:00
|
|
|
InFileCreator: InFileCreator.C InFileCreator.h ../Cleopatra/ClassIsotope.h ../Cleopatra/constant.h potentials.h
|
2023-04-03 16:03:48 -04:00
|
|
|
$(CC) InFileCreator.C -o InFileCreator `root-config --cflags --glibs`
|
|
|
|
|
|
|
|
ExtractXSec: ExtractXSec.C ExtractXSec.h
|
|
|
|
$(CC) ExtractXSec.C -o ExtractXSec `root-config --cflags --glibs`
|
|
|
|
|
|
|
|
ExtractXSecFromText: ExtractXSecFromText.C ExtractXSec.h
|
|
|
|
$(CC) ExtractXSecFromText.C -o ExtractXSecFromText `root-config --cflags --glibs`
|
|
|
|
|
|
|
|
PlotTGraphTObjArray: PlotTGraphTObjArray.C PlotTGraphTObjArray.h
|
|
|
|
$(CC) PlotTGraphTObjArray.C -o PlotTGraphTObjArray `root-config --cflags --glibs`
|
|
|
|
|
2024-02-19 18:31:27 -05:00
|
|
|
Cleopatra: Cleopatra.C
|
|
|
|
$(CC) Cleopatra.C -o Cleopatra `root-config --cflags --glibs`
|
|
|
|
|
2024-02-20 16:38:40 -05:00
|
|
|
FindThetaCM: FindThetaCM.C FindThetaCM.h ../Cleopatra/ClassTransfer.h ../Cleopatra/ClassHelios.h ../Cleopatra/ClassIsotope.h ../Cleopatra/constant.h
|
2023-04-03 16:03:48 -04:00
|
|
|
$(CC) FindThetaCM.C -o FindThetaCM `root-config --cflags --glibs`
|
|
|
|
|
2024-02-19 18:31:27 -05:00
|
|
|
Transfer: Transfer.C Transfer.h ../Cleopatra/ClassTransfer.h ../Cleopatra/ClassHelios.h ../Cleopatra/ClassIsotope.h ../Cleopatra/constant.h
|
2023-04-03 16:03:48 -04:00
|
|
|
$(CC) Transfer.C -o Transfer `root-config --cflags --glibs`
|
|
|
|
|
2024-02-20 16:38:40 -05:00
|
|
|
SimAlpha: alpha.C ../Cleopatra/ClassHelios.h
|
|
|
|
$(CC) alpha.C -o SimAlpha `root-config --cflags --glibs`
|
|
|
|
|
2023-04-10 15:56:31 -04:00
|
|
|
clean:
|
|
|
|
/bin/rm -f $(ALL)
|