adopted dks to root6 (branch dks6). Not yet tested.
This commit is contained in:
parent
38c4293d58
commit
18d037fdf2
@ -1209,6 +1209,9 @@ case "${host_cpu}" in
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
CXXFLAGS="-std=c++11 ${CXXFLAGS}"
|
||||||
|
AC_SUBST(CXXFLAGS)
|
||||||
|
|
||||||
LOCAL_BIN_CXXFLAGS="${CPUFLAGS} -Wall -Wno-trigraphs"
|
LOCAL_BIN_CXXFLAGS="${CPUFLAGS} -Wall -Wno-trigraphs"
|
||||||
LOCAL_LIB_CXXFLAGS="${LOCAL_BIN_CXXFLAGS}"
|
LOCAL_LIB_CXXFLAGS="${LOCAL_BIN_CXXFLAGS}"
|
||||||
LOCAL_PSIBIN_LIB_CXXFLAGS="${LOCAL_LIB_CXXFLAGS}"
|
LOCAL_PSIBIN_LIB_CXXFLAGS="${LOCAL_LIB_CXXFLAGS}"
|
||||||
@ -1233,7 +1236,7 @@ case "$host" in
|
|||||||
;;
|
;;
|
||||||
*-*-darwin*)
|
*-*-darwin*)
|
||||||
ARCH=DARWIN
|
ARCH=DARWIN
|
||||||
LOCAL_PSIBIN_LIB_CXXFLAGS="${LOCAL_LIB_CXXFLAGS} -D__linux__"
|
LOCAL_PSIBIN_LIB_CXXFLAGS="${LOCAL_LIB_CXXFLAGS} -D_Darwin_"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
ARCH=OTHERUNIX
|
ARCH=OTHERUNIX
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
@ -12,4 +12,4 @@
|
|||||||
|
|
||||||
#pragma link C++ class PUserFcn+;
|
#pragma link C++ class PUserFcn+;
|
||||||
|
|
||||||
#endif //__CINT__
|
#endif //__CLING__
|
||||||
|
@ -86,6 +86,14 @@ dict_cpp_sources = \
|
|||||||
dict_cpp_sources_userFcn = \
|
dict_cpp_sources_userFcn = \
|
||||||
PUserFcnBaseDict.cpp
|
PUserFcnBaseDict.cpp
|
||||||
|
|
||||||
|
pcmdir = $(libdir)
|
||||||
|
pcm_DATA = \
|
||||||
|
PFourierCanvasDict_rdict.pcm \
|
||||||
|
PMusrCanvasDict_rdict.pcm \
|
||||||
|
PMusrT0Dict_rdict.pcm \
|
||||||
|
PStartupHandlerDict_rdict.pcm \
|
||||||
|
PUserFcnBaseDict_rdict.pcm
|
||||||
|
|
||||||
include_HEADERS = $(h_sources) $(h_sources_userFcn)
|
include_HEADERS = $(h_sources) $(h_sources_userFcn)
|
||||||
noinst_HEADERS = $(h_linkdef) $(dict_h_sources) $(h_linkdef_userFcn) $(dict_h_sources_userFcn)
|
noinst_HEADERS = $(h_linkdef) $(dict_h_sources) $(h_linkdef_userFcn) $(dict_h_sources_userFcn)
|
||||||
|
|
||||||
@ -94,7 +102,7 @@ AM_CXXFLAGS = $(LOCAL_LIB_CXXFLAGS)
|
|||||||
|
|
||||||
BUILT_SOURCES = $(dict_cpp_sources) $(dict_h_sources) $(dict_cpp_sources_userFcn) $(dict_h_sources_userFcn)
|
BUILT_SOURCES = $(dict_cpp_sources) $(dict_h_sources) $(dict_cpp_sources_userFcn) $(dict_h_sources_userFcn)
|
||||||
AM_LDFLAGS = $(LOCAL_LIB_LDFLAGS) -L@ROOTLIBDIR@
|
AM_LDFLAGS = $(LOCAL_LIB_LDFLAGS) -L@ROOTLIBDIR@
|
||||||
CLEANFILES = *Dict.cpp *Dict.h *~ core
|
CLEANFILES = *Dict.cpp *Dict.h *Dict* *~ core
|
||||||
|
|
||||||
%Dict.cpp %Dict.h: ../include/%.h ../include/%LinkDef.h
|
%Dict.cpp %Dict.h: ../include/%.h ../include/%LinkDef.h
|
||||||
@ROOTCINT@ -v -f $*Dict.cpp -c -p $(AM_CPPFLAGS) $^
|
@ROOTCINT@ -v -f $*Dict.cpp -c -p $(AM_CPPFLAGS) $^
|
||||||
|
@ -625,7 +625,7 @@ TH1F* PFourier::GetPhaseOptRealFourier(const TH1F *re, const TH1F *im, vector<Do
|
|||||||
|
|
||||||
phase.resize(2); // c0, c1
|
phase.resize(2); // c0, c1
|
||||||
|
|
||||||
TAxis *axis = re->GetXaxis();
|
const TAxis *axis = re->GetXaxis();
|
||||||
|
|
||||||
Int_t minBin = 1;
|
Int_t minBin = 1;
|
||||||
Int_t maxBin = axis->GetNbins();
|
Int_t maxBin = axis->GetNbins();
|
||||||
|
@ -757,8 +757,8 @@ Bool_t PRunAsymmetry::SubtractEstimatedBkg()
|
|||||||
beamPeriod = 0.0;
|
beamPeriod = 0.0;
|
||||||
|
|
||||||
// check if start and end are in proper order
|
// check if start and end are in proper order
|
||||||
UInt_t start[2] = {fRunInfo->GetBkgRange(0), fRunInfo->GetBkgRange(2)};
|
Int_t start[2] = {fRunInfo->GetBkgRange(0), fRunInfo->GetBkgRange(2)};
|
||||||
UInt_t end[2] = {fRunInfo->GetBkgRange(1), fRunInfo->GetBkgRange(3)};
|
Int_t end[2] = {fRunInfo->GetBkgRange(1), fRunInfo->GetBkgRange(3)};
|
||||||
for (UInt_t i=0; i<2; i++) {
|
for (UInt_t i=0; i<2; i++) {
|
||||||
if (end[i] < start[i]) {
|
if (end[i] < start[i]) {
|
||||||
cout << endl << "PRunAsymmetry::SubtractEstimatedBkg(): end = " << end[i] << " > start = " << start[i] << "! Will swap them!";
|
cout << endl << "PRunAsymmetry::SubtractEstimatedBkg(): end = " << end[i] << " > start = " << start[i] << "! Will swap them!";
|
||||||
|
@ -746,8 +746,8 @@ Bool_t PRunAsymmetryRRF::SubtractEstimatedBkg()
|
|||||||
beamPeriod = 0.0;
|
beamPeriod = 0.0;
|
||||||
|
|
||||||
// check if start and end are in proper order
|
// check if start and end are in proper order
|
||||||
UInt_t start[2] = {fRunInfo->GetBkgRange(0), fRunInfo->GetBkgRange(2)};
|
UInt_t start[2] = {(UInt_t)fRunInfo->GetBkgRange(0), (UInt_t)fRunInfo->GetBkgRange(2)};
|
||||||
UInt_t end[2] = {fRunInfo->GetBkgRange(1), fRunInfo->GetBkgRange(3)};
|
UInt_t end[2] = {(UInt_t)fRunInfo->GetBkgRange(1), (UInt_t)fRunInfo->GetBkgRange(3)};
|
||||||
for (UInt_t i=0; i<2; i++) {
|
for (UInt_t i=0; i<2; i++) {
|
||||||
if (end[i] < start[i]) {
|
if (end[i] < start[i]) {
|
||||||
cout << endl << "PRunAsymmetryRRF::SubtractEstimatedBkg(): end = " << end[i] << " > start = " << start[i] << "! Will swap them!";
|
cout << endl << "PRunAsymmetryRRF::SubtractEstimatedBkg(): end = " << end[i] << " > start = " << start[i] << "! Will swap them!";
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
// root dictionary stuff --------------------------------------------------
|
// root dictionary stuff --------------------------------------------------
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
@ -37,6 +37,6 @@
|
|||||||
|
|
||||||
#pragma link C++ class BMWStartupHandler+;
|
#pragma link C++ class BMWStartupHandler+;
|
||||||
|
|
||||||
#endif //__CINT__
|
#endif //__CLING__
|
||||||
// root dictionary stuff --------------------------------------------------
|
// root dictionary stuff --------------------------------------------------
|
||||||
|
|
||||||
|
5
src/external/BMWtools/Makefile.am
vendored
5
src/external/BMWtools/Makefile.am
vendored
@ -19,6 +19,9 @@ cpp_sources = \
|
|||||||
dict_cpp_sources = \
|
dict_cpp_sources = \
|
||||||
BMWStartupHandlerDict.cpp
|
BMWStartupHandlerDict.cpp
|
||||||
|
|
||||||
|
pcmdir = $(libdir)
|
||||||
|
pcm_DATA = BMWStartupHandlerDict_rdict.pcm
|
||||||
|
|
||||||
include_HEADERS = $(h_sources)
|
include_HEADERS = $(h_sources)
|
||||||
noinst_HEADERS = $(h_linkdef) $(dict_h_sources)
|
noinst_HEADERS = $(h_linkdef) $(dict_h_sources)
|
||||||
|
|
||||||
@ -27,7 +30,7 @@ AM_CXXFLAGS = $(LOCAL_LIB_CXXFLAGS)
|
|||||||
|
|
||||||
BUILT_SOURCES = $(dict_cpp_sources) $(dict_h_sources)
|
BUILT_SOURCES = $(dict_cpp_sources) $(dict_h_sources)
|
||||||
AM_LDFLAGS = $(LOCAL_LIB_LDFLAGS) -L@ROOTLIBDIR@
|
AM_LDFLAGS = $(LOCAL_LIB_LDFLAGS) -L@ROOTLIBDIR@
|
||||||
CLEANFILES = *Dict.cpp *Dict.h *~ core
|
CLEANFILES = *Dict.cpp *Dict.h *Dict* *~ core
|
||||||
|
|
||||||
%Dict.cpp %Dict.h: %.h %LinkDef.h
|
%Dict.cpp %Dict.h: %.h %LinkDef.h
|
||||||
@ROOTCINT@ -v -f $*Dict.cpp -c -p $(INCLUDES) $^
|
@ROOTCINT@ -v -f $*Dict.cpp -c -p $(INCLUDES) $^
|
||||||
|
7
src/external/MagProximity/Makefile.am
vendored
7
src/external/MagProximity/Makefile.am
vendored
@ -23,6 +23,11 @@ dict_cpp_sources = \
|
|||||||
PMagProximityFitterDict.cpp \
|
PMagProximityFitterDict.cpp \
|
||||||
PMPStartupHandlerDict.cpp
|
PMPStartupHandlerDict.cpp
|
||||||
|
|
||||||
|
pcmdir = $(libdir)
|
||||||
|
pcm_DATA = \
|
||||||
|
PMagProximityFitterDict_rdict.pcm \
|
||||||
|
PMPStartupHandlerDict_rdict.pcm
|
||||||
|
|
||||||
include_HEADERS = $(h_sources)
|
include_HEADERS = $(h_sources)
|
||||||
noinst_HEADERS = $(h_linkdef) $(dict_h_sources)
|
noinst_HEADERS = $(h_linkdef) $(dict_h_sources)
|
||||||
|
|
||||||
@ -31,7 +36,7 @@ AM_CXXFLAGS = $(LOCAL_LIB_CXXFLAGS)
|
|||||||
|
|
||||||
BUILT_SOURCES = $(dict_cpp_sources) $(dict_h_sources)
|
BUILT_SOURCES = $(dict_cpp_sources) $(dict_h_sources)
|
||||||
AM_LDFLAGS = $(LOCAL_LIB_LDFLAGS) -L@ROOTLIBDIR@
|
AM_LDFLAGS = $(LOCAL_LIB_LDFLAGS) -L@ROOTLIBDIR@
|
||||||
CLEANFILES = *Dict.cpp *Dict.h *~ core
|
CLEANFILES = *Dict.cpp *Dict.h *Dict* *~ core
|
||||||
|
|
||||||
%Dict.cpp %Dict.h: %.h %LinkDef.h
|
%Dict.cpp %Dict.h: %.h %LinkDef.h
|
||||||
@ROOTCINT@ -v -f $*Dict.cpp -c -p $(AM_CPPFLAGS) $^
|
@ROOTCINT@ -v -f $*Dict.cpp -c -p $(AM_CPPFLAGS) $^
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
## Process this file with automake to create Makefile.in
|
## Process this file with automake to create Makefile.in
|
||||||
## $Id$
|
|
||||||
|
|
||||||
h_sources = MuSR_td_PSI_bin.h
|
h_sources = MuSR_td_PSI_bin.h
|
||||||
cpp_sources = MuSR_td_PSI_bin.cpp
|
cpp_sources = MuSR_td_PSI_bin.cpp
|
||||||
|
@ -205,7 +205,7 @@ typedef long int Int32;
|
|||||||
#else /* other operating system */
|
#else /* other operating system */
|
||||||
|
|
||||||
/* 32 bit word length */
|
/* 32 bit word length */
|
||||||
#if (defined(_WIN32) || defined(__linux__) || defined(_WIN32GCC))
|
#if (defined(_WIN32) || defined(__linux__) || defined(_Darwin_) || defined(_WIN32GCC))
|
||||||
typedef short Int16;
|
typedef short Int16;
|
||||||
typedef int Int32;
|
typedef int Int32;
|
||||||
#else
|
#else
|
||||||
|
2
src/external/MuSR_software/Makefile.am
vendored
2
src/external/MuSR_software/Makefile.am
vendored
@ -1,3 +1 @@
|
|||||||
## $Id$
|
|
||||||
|
|
||||||
SUBDIRS = Class_MuSR_PSI
|
SUBDIRS = Class_MuSR_PSI
|
||||||
|
5
src/external/MusrRoot/Makefile.am
vendored
5
src/external/MusrRoot/Makefile.am
vendored
@ -15,6 +15,9 @@ cpp_sources = \
|
|||||||
dict_cpp_sources = \
|
dict_cpp_sources = \
|
||||||
TMusrRunHeaderDict.cpp
|
TMusrRunHeaderDict.cpp
|
||||||
|
|
||||||
|
pcmdir = $(libdir)
|
||||||
|
pcm_DATA = TMusrRunHeaderDict_rdict.pcm
|
||||||
|
|
||||||
include_HEADERS = $(h_sources)
|
include_HEADERS = $(h_sources)
|
||||||
noinst_HEADERS = $(h_linkdef) $(dict_h_sources)
|
noinst_HEADERS = $(h_linkdef) $(dict_h_sources)
|
||||||
|
|
||||||
@ -23,7 +26,7 @@ AM_CXXFLAGS = $(LOCAL_LIB_CXXFLAGS)
|
|||||||
|
|
||||||
BUILT_SOURCES = $(dict_cpp_sources) $(dist_h_sources)
|
BUILT_SOURCES = $(dict_cpp_sources) $(dist_h_sources)
|
||||||
AM_LDFLAGS = $(LOCAL_LIB_LDFLAGS) -L@ROOTLIBDIR@
|
AM_LDFLAGS = $(LOCAL_LIB_LDFLAGS) -L@ROOTLIBDIR@
|
||||||
CLEANFILES = *Dict.cpp *Dict.h *~ core
|
CLEANFILES = *Dict.cpp *Dict.h *Dict* *~ core
|
||||||
|
|
||||||
%Dict.cpp %Dict.h: %.h %LinkDef.h
|
%Dict.cpp %Dict.h: %.h %LinkDef.h
|
||||||
@ROOTCINT@ -v -f $*Dict.cpp -c -p $(INCLUDES) $^
|
@ROOTCINT@ -v -f $*Dict.cpp -c -p $(INCLUDES) $^
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
|
7
src/external/Nonlocal/Makefile.am
vendored
7
src/external/Nonlocal/Makefile.am
vendored
@ -23,6 +23,11 @@ dict_cpp_sources = \
|
|||||||
PNL_PippardFitterDict.cpp \
|
PNL_PippardFitterDict.cpp \
|
||||||
PNL_StartupHandlerDict.cpp
|
PNL_StartupHandlerDict.cpp
|
||||||
|
|
||||||
|
pcmdir = $(libdir)
|
||||||
|
pcm_DATA = \
|
||||||
|
PNL_PippardFitterDict_rdict.pcm \
|
||||||
|
PNL_StartupHandlerDict_rdict.pcm
|
||||||
|
|
||||||
include_HEADERS = $(h_sources)
|
include_HEADERS = $(h_sources)
|
||||||
noinst_HEADERS = $(h_linkdef) $(dict_h_sources)
|
noinst_HEADERS = $(h_linkdef) $(dict_h_sources)
|
||||||
|
|
||||||
@ -31,7 +36,7 @@ AM_CXXFLAGS = $(LOCAL_LIB_CXXFLAGS)
|
|||||||
|
|
||||||
BUILT_SOURCES = $(dict_cpp_sources) $(dict_h_sources)
|
BUILT_SOURCES = $(dict_cpp_sources) $(dict_h_sources)
|
||||||
AM_LDFLAGS = $(LOCAL_LIB_LDFLAGS) -L@ROOTLIBDIR@
|
AM_LDFLAGS = $(LOCAL_LIB_LDFLAGS) -L@ROOTLIBDIR@
|
||||||
CLEANFILES = *Dict.cpp *Dict.h *~ core
|
CLEANFILES = *Dict.cpp *Dict.h *Dict* *~ core
|
||||||
|
|
||||||
%Dict.cpp %Dict.h: %.h %LinkDef.h
|
%Dict.cpp %Dict.h: %.h %LinkDef.h
|
||||||
@ROOTCINT@ -v -f $*Dict.cpp -c -p $(AM_CPPFLAGS) $^
|
@ROOTCINT@ -v -f $*Dict.cpp -c -p $(AM_CPPFLAGS) $^
|
||||||
|
2
src/external/Nonlocal/PNL_PippardFitter.h
vendored
2
src/external/Nonlocal/PNL_PippardFitter.h
vendored
@ -31,7 +31,7 @@
|
|||||||
#define _PNL_PIPPARDFITTER_H_
|
#define _PNL_PIPPARDFITTER_H_
|
||||||
|
|
||||||
// the following ifdef is needed for GCC 4.6 or higher, fftw 3.3 or higher and root 5.30.03 or lower
|
// the following ifdef is needed for GCC 4.6 or higher, fftw 3.3 or higher and root 5.30.03 or lower
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
typedef struct { char a[7]; } __float128; // needed since cint doesn't know it
|
typedef struct { char a[7]; } __float128; // needed since cint doesn't know it
|
||||||
#endif
|
#endif
|
||||||
#include <fftw3.h>
|
#include <fftw3.h>
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
|
7
src/external/TLemRunHeader/Makefile.am
vendored
7
src/external/TLemRunHeader/Makefile.am
vendored
@ -20,6 +20,11 @@ dict_cpp_sources = \
|
|||||||
TLemStatsDict.cxx \
|
TLemStatsDict.cxx \
|
||||||
TLemRunHeaderDict.cxx
|
TLemRunHeaderDict.cxx
|
||||||
|
|
||||||
|
pcmdir = $(libdir)
|
||||||
|
pcm_DATA = \
|
||||||
|
TLemStatsDict_rdict.pcm \
|
||||||
|
TLemRunHeaderDict_rdict.pcm
|
||||||
|
|
||||||
include_HEADERS = $(h_sources)
|
include_HEADERS = $(h_sources)
|
||||||
noinst_HEADERS = $(h_linkdef) $(dict_h_sources)
|
noinst_HEADERS = $(h_linkdef) $(dict_h_sources)
|
||||||
|
|
||||||
@ -28,7 +33,7 @@ AM_CXXFLAGS = $(LOCAL_LIB_CXXFLAGS)
|
|||||||
|
|
||||||
BUILT_SOURCES = $(dict_cpp_sources) $(dist_h_sources)
|
BUILT_SOURCES = $(dict_cpp_sources) $(dist_h_sources)
|
||||||
AM_LDFLAGS = $(LOCAL_LIB_LDFLAGS) -L@ROOTLIBDIR@
|
AM_LDFLAGS = $(LOCAL_LIB_LDFLAGS) -L@ROOTLIBDIR@
|
||||||
CLEANFILES = *Dict.cxx *Dict.h *~ core
|
CLEANFILES = *Dict.cxx *Dict.h *Dict* *~ core
|
||||||
|
|
||||||
%Dict.cxx %Dict.h: %.h %LinkDef.h
|
%Dict.cxx %Dict.h: %.h %LinkDef.h
|
||||||
@ROOTCINT@ -v -f $*Dict.cxx -c -p $(INCLUDES) $^
|
@ROOTCINT@ -v -f $*Dict.cxx -c -p $(INCLUDES) $^
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
|
4
src/external/libBNMR/TBNMRLinkDef.h
vendored
4
src/external/libBNMR/TBNMRLinkDef.h
vendored
@ -29,7 +29,7 @@
|
|||||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
@ -40,4 +40,4 @@
|
|||||||
#pragma link C++ class SExpRlx+;
|
#pragma link C++ class SExpRlx+;
|
||||||
#pragma link C++ class MLRes+;
|
#pragma link C++ class MLRes+;
|
||||||
|
|
||||||
#endif //__CINT__
|
#endif //__CLING__
|
||||||
|
@ -15,6 +15,9 @@ cpp_sources = \
|
|||||||
dict_cpp_sources = \
|
dict_cpp_sources = \
|
||||||
TCalcMeanFieldsLEMDict.cpp
|
TCalcMeanFieldsLEMDict.cpp
|
||||||
|
|
||||||
|
pcmdir = $(libdir)
|
||||||
|
pcm_DATA = TCalcMeanFieldsLEMDict_rdict.pcm
|
||||||
|
|
||||||
include_HEADERS = $(h_sources)
|
include_HEADERS = $(h_sources)
|
||||||
noinst_HEADERS = $(h_linkdef) $(dict_h_sources)
|
noinst_HEADERS = $(h_linkdef) $(dict_h_sources)
|
||||||
|
|
||||||
@ -23,7 +26,7 @@ AM_CXXFLAGS = $(LOCAL_LIB_CXXFLAGS)
|
|||||||
|
|
||||||
BUILT_SOURCES = $(dict_cpp_sources) $(dict_h_sources)
|
BUILT_SOURCES = $(dict_cpp_sources) $(dict_h_sources)
|
||||||
AM_LDFLAGS = $(LOCAL_LIB_LDFLAGS) -L@ROOTLIBDIR@
|
AM_LDFLAGS = $(LOCAL_LIB_LDFLAGS) -L@ROOTLIBDIR@
|
||||||
CLEANFILES = *Dict.cpp *Dict.h *~ core
|
CLEANFILES = *Dict.cpp *Dict.h *Dict* *~ core
|
||||||
|
|
||||||
%Dict.cpp %Dict.h: %.h %LinkDef.h
|
%Dict.cpp %Dict.h: %.h %LinkDef.h
|
||||||
@ROOTCINT@ -v -f $*Dict.cpp -c -p $(AM_CPPFLAGS) $^
|
@ROOTCINT@ -v -f $*Dict.cpp -c -p $(AM_CPPFLAGS) $^
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
// root dictionary stuff --------------------------------------------------
|
// root dictionary stuff --------------------------------------------------
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
@ -39,6 +39,6 @@
|
|||||||
#pragma link C++ class TMeanFieldsForScTrilayer+;
|
#pragma link C++ class TMeanFieldsForScTrilayer+;
|
||||||
#pragma link C++ class TMeanFieldsForScTrilayerWithInsulator+;
|
#pragma link C++ class TMeanFieldsForScTrilayerWithInsulator+;
|
||||||
|
|
||||||
#endif //__CINT__
|
#endif //__CLING__
|
||||||
// root dictionary stuff --------------------------------------------------
|
// root dictionary stuff --------------------------------------------------
|
||||||
|
|
||||||
|
8
src/external/libFitPofB/classes/Makefile.am
vendored
8
src/external/libFitPofB/classes/Makefile.am
vendored
@ -33,6 +33,12 @@ dict_cpp_sources = \
|
|||||||
TSkewedGssDict.cpp \
|
TSkewedGssDict.cpp \
|
||||||
TVortexDict.cpp
|
TVortexDict.cpp
|
||||||
|
|
||||||
|
pcmdir = $(libdir)
|
||||||
|
pcm_DATA = \
|
||||||
|
TLondon1DDict_rdict.pcm \
|
||||||
|
TSkewedGssDict_rdict.pcm \
|
||||||
|
TVortexDict_rdict.pcm
|
||||||
|
|
||||||
include_HEADERS = $(h_sources)
|
include_HEADERS = $(h_sources)
|
||||||
noinst_HEADERS = $(h_linkdef) $(dict_h_sources)
|
noinst_HEADERS = $(h_linkdef) $(dict_h_sources)
|
||||||
|
|
||||||
@ -41,7 +47,7 @@ AM_CXXFLAGS = $(LOCAL_LIB_CXXFLAGS)
|
|||||||
|
|
||||||
BUILT_SOURCES = $(dict_cpp_sources) $(dict_h_sources)
|
BUILT_SOURCES = $(dict_cpp_sources) $(dict_h_sources)
|
||||||
AM_LDFLAGS = $(LOCAL_LIB_LDFLAGS) -L@ROOTLIBDIR@
|
AM_LDFLAGS = $(LOCAL_LIB_LDFLAGS) -L@ROOTLIBDIR@
|
||||||
CLEANFILES = *Dict.cpp *Dict.h *~ ../include/*~ core
|
CLEANFILES = *Dict.cpp *Dict.h *Dict* *~ ../include/*~ core
|
||||||
|
|
||||||
%Dict.cpp %Dict.h: ../include/%.h ../include/%LinkDef.h
|
%Dict.cpp %Dict.h: ../include/%.h ../include/%LinkDef.h
|
||||||
@ROOTCINT@ -v -f $*Dict.cpp -c -p $(AM_CPPFLAGS) $^
|
@ROOTCINT@ -v -f $*Dict.cpp -c -p $(AM_CPPFLAGS) $^
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
// the following ifdef is needed for GCC 4.6 or higher, fftw 3.3 or higher and root 5.30.03 or lower
|
// the following ifdef is needed for GCC 4.6 or higher, fftw 3.3 or higher and root 5.30.03 or lower
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
typedef struct { char a[7]; } __float128; // needed since cint doesn't know it
|
typedef struct { char a[7]; } __float128; // needed since cint doesn't know it
|
||||||
#endif
|
#endif
|
||||||
#include "fftw3.h"
|
#include "fftw3.h"
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
// the following ifdef is needed for GCC 4.6 or higher, fftw 3.3 or higher and root 5.30.03 or lower
|
// the following ifdef is needed for GCC 4.6 or higher, fftw 3.3 or higher and root 5.30.03 or lower
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
typedef struct { char a[7]; } __float128; // needed since cint doesn't know it
|
typedef struct { char a[7]; } __float128; // needed since cint doesn't know it
|
||||||
#endif
|
#endif
|
||||||
#include "fftw3.h"
|
#include "fftw3.h"
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
// root dictionary stuff --------------------------------------------------
|
// root dictionary stuff --------------------------------------------------
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
@ -41,6 +41,6 @@
|
|||||||
#pragma link C++ class TLondon1D3LS+;
|
#pragma link C++ class TLondon1D3LS+;
|
||||||
//#pragma link C++ class TLondon1D4L+;
|
//#pragma link C++ class TLondon1D4L+;
|
||||||
|
|
||||||
#endif //__CINT__
|
#endif //__CLING__
|
||||||
// root dictionary stuff --------------------------------------------------
|
// root dictionary stuff --------------------------------------------------
|
||||||
|
|
||||||
|
2
src/external/libFitPofB/include/TPofTCalc.h
vendored
2
src/external/libFitPofB/include/TPofTCalc.h
vendored
@ -32,7 +32,7 @@
|
|||||||
#include "TPofBCalc.h"
|
#include "TPofBCalc.h"
|
||||||
|
|
||||||
// the following ifdef is needed for GCC 4.6 or higher, fftw 3.3 or higher and root 5.30.03 or lower
|
// the following ifdef is needed for GCC 4.6 or higher, fftw 3.3 or higher and root 5.30.03 or lower
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
typedef struct { char a[7]; } __float128; // needed since cint doesn't know it
|
typedef struct { char a[7]; } __float128; // needed since cint doesn't know it
|
||||||
#endif
|
#endif
|
||||||
#include "fftw3.h"
|
#include "fftw3.h"
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
// root dictionary stuff --------------------------------------------------
|
// root dictionary stuff --------------------------------------------------
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
@ -35,6 +35,6 @@
|
|||||||
|
|
||||||
#pragma link C++ class TSkewedGss+;
|
#pragma link C++ class TSkewedGss+;
|
||||||
|
|
||||||
#endif //__CINT__
|
#endif //__CLING__
|
||||||
// root dictionary stuff --------------------------------------------------
|
// root dictionary stuff --------------------------------------------------
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
// root dictionary stuff --------------------------------------------------
|
// root dictionary stuff --------------------------------------------------
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
@ -46,6 +46,6 @@
|
|||||||
#pragma link C++ class TBulkAnisotropicTriVortexAGL+;
|
#pragma link C++ class TBulkAnisotropicTriVortexAGL+;
|
||||||
#pragma link C++ class TBulkAnisotropicTriVortexAGLGlobal+;
|
#pragma link C++ class TBulkAnisotropicTriVortexAGLGlobal+;
|
||||||
|
|
||||||
#endif //__CINT__
|
#endif //__CLING__
|
||||||
// root dictionary stuff --------------------------------------------------
|
// root dictionary stuff --------------------------------------------------
|
||||||
|
|
||||||
|
5
src/external/libGapIntegrals/Makefile.am
vendored
5
src/external/libGapIntegrals/Makefile.am
vendored
@ -15,6 +15,9 @@ cpp_sources = \
|
|||||||
dict_cpp_sources = \
|
dict_cpp_sources = \
|
||||||
TGapIntegralsDict.cpp
|
TGapIntegralsDict.cpp
|
||||||
|
|
||||||
|
pcmdir = $(libdir)
|
||||||
|
pcm_DATA = TGapIntegralsDict_rdict.pcm
|
||||||
|
|
||||||
include_HEADERS = $(h_sources)
|
include_HEADERS = $(h_sources)
|
||||||
noinst_HEADERS = $(h_linkdef) $(dict_h_sources)
|
noinst_HEADERS = $(h_linkdef) $(dict_h_sources)
|
||||||
|
|
||||||
@ -23,7 +26,7 @@ AM_CXXFLAGS = $(LOCAL_LIB_CXXFLAGS)
|
|||||||
|
|
||||||
BUILT_SOURCES = $(dict_cpp_sources) $(dict_h_sources)
|
BUILT_SOURCES = $(dict_cpp_sources) $(dict_h_sources)
|
||||||
AM_LDFLAGS = $(LOCAL_LIB_LDFLAGS) -L@ROOTLIBDIR@
|
AM_LDFLAGS = $(LOCAL_LIB_LDFLAGS) -L@ROOTLIBDIR@
|
||||||
CLEANFILES = *Dict.cpp *Dict.h *~ core
|
CLEANFILES = *Dict.cpp *Dict.h *Dict* *~ core
|
||||||
|
|
||||||
%Dict.cpp %Dict.h: %.h %LinkDef.h
|
%Dict.cpp %Dict.h: %.h %LinkDef.h
|
||||||
@ROOTCINT@ -v -f $*Dict.cpp -c -p $(AM_CPPFLAGS) $^
|
@ROOTCINT@ -v -f $*Dict.cpp -c -p $(AM_CPPFLAGS) $^
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
|
|
||||||
|
|
||||||
// root dictionary stuff --------------------------------------------------
|
// root dictionary stuff --------------------------------------------------
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
@ -57,6 +57,6 @@
|
|||||||
#pragma link C++ class TLambdaInvPowerLaw+;
|
#pragma link C++ class TLambdaInvPowerLaw+;
|
||||||
#pragma link C++ class TFilmMagnetizationDWave+;
|
#pragma link C++ class TFilmMagnetizationDWave+;
|
||||||
|
|
||||||
#endif //__CINT__
|
#endif //__CLING__
|
||||||
// root dictionary stuff --------------------------------------------------
|
// root dictionary stuff --------------------------------------------------
|
||||||
|
|
||||||
|
4
src/external/libGbGLF/PGbGLFLinkDef.h
vendored
4
src/external/libGbGLF/PGbGLFLinkDef.h
vendored
@ -27,7 +27,7 @@
|
|||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
// root dictionary stuff --------------------------------------------------
|
// root dictionary stuff --------------------------------------------------
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
@ -35,6 +35,6 @@
|
|||||||
|
|
||||||
#pragma link C++ class PGbGLF+;
|
#pragma link C++ class PGbGLF+;
|
||||||
|
|
||||||
#endif //__CINT__
|
#endif //__CLING__
|
||||||
// root dictionary stuff --------------------------------------------------
|
// root dictionary stuff --------------------------------------------------
|
||||||
|
|
||||||
|
5
src/external/libLFRelaxation/Makefile.am
vendored
5
src/external/libLFRelaxation/Makefile.am
vendored
@ -15,6 +15,9 @@ cpp_sources = \
|
|||||||
dict_cpp_sources = \
|
dict_cpp_sources = \
|
||||||
TLFRelaxationDict.cpp
|
TLFRelaxationDict.cpp
|
||||||
|
|
||||||
|
pcmdir = $(libdir)
|
||||||
|
pcm_DATA = TLFRelaxationDict_rdict.pcm
|
||||||
|
|
||||||
include_HEADERS = $(h_sources)
|
include_HEADERS = $(h_sources)
|
||||||
noinst_HEADERS = $(h_linkdef) $(dict_h_sources)
|
noinst_HEADERS = $(h_linkdef) $(dict_h_sources)
|
||||||
|
|
||||||
@ -23,7 +26,7 @@ AM_CXXFLAGS = $(LOCAL_LIB_CXXFLAGS)
|
|||||||
|
|
||||||
BUILT_SOURCES = $(dict_cpp_sources) $(dict_h_sources)
|
BUILT_SOURCES = $(dict_cpp_sources) $(dict_h_sources)
|
||||||
AM_LDFLAGS = $(LOCAL_LIB_LDFLAGS) -L@ROOTLIBDIR@
|
AM_LDFLAGS = $(LOCAL_LIB_LDFLAGS) -L@ROOTLIBDIR@
|
||||||
CLEANFILES = *Dict.cpp *Dict.h *~ core
|
CLEANFILES = *Dict.cpp *Dict.h *Dict* *~ core
|
||||||
|
|
||||||
%Dict.cpp %Dict.h: %.h %LinkDef.h
|
%Dict.cpp %Dict.h: %.h %LinkDef.h
|
||||||
@ROOTCINT@ -v -f $*Dict.cpp -c -p $(AM_CPPFLAGS) $^
|
@ROOTCINT@ -v -f $*Dict.cpp -c -p $(AM_CPPFLAGS) $^
|
||||||
|
2
src/external/libLFRelaxation/TLFRelaxation.h
vendored
2
src/external/libLFRelaxation/TLFRelaxation.h
vendored
@ -39,7 +39,7 @@ using namespace std;
|
|||||||
#include "PUserFcnBase.h"
|
#include "PUserFcnBase.h"
|
||||||
|
|
||||||
// the following ifdef is needed for GCC 4.6 or higher, fftw 3.3 or higher and root 5.30.03 or lower
|
// the following ifdef is needed for GCC 4.6 or higher, fftw 3.3 or higher and root 5.30.03 or lower
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
typedef struct { char a[7]; } __float128; // needed since cint doesn't know it
|
typedef struct { char a[7]; } __float128; // needed since cint doesn't know it
|
||||||
#endif
|
#endif
|
||||||
#include "fftw3.h"
|
#include "fftw3.h"
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
// root dictionary stuff --------------------------------------------------
|
// root dictionary stuff --------------------------------------------------
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
@ -40,6 +40,6 @@
|
|||||||
#pragma link C++ class TLFDynSG+;
|
#pragma link C++ class TLFDynSG+;
|
||||||
#pragma link C++ class TLFSGInterpolation+;
|
#pragma link C++ class TLFSGInterpolation+;
|
||||||
|
|
||||||
#endif //__CINT__
|
#endif //__CLING__
|
||||||
// root dictionary stuff --------------------------------------------------
|
// root dictionary stuff --------------------------------------------------
|
||||||
|
|
||||||
|
@ -20,6 +20,11 @@ dict_cpp_sources = \
|
|||||||
PStartupHandler_PMDict.cpp \
|
PStartupHandler_PMDict.cpp \
|
||||||
PPhotoMeissnerDict.cpp
|
PPhotoMeissnerDict.cpp
|
||||||
|
|
||||||
|
pcmdir = $(libdir)
|
||||||
|
pcm_DATA = \
|
||||||
|
PPhotoMeissnerDict_rdict.pcm \
|
||||||
|
PStartupHandler_PMDict_rdict.pcm
|
||||||
|
|
||||||
include_HEADERS = $(h_sources)
|
include_HEADERS = $(h_sources)
|
||||||
noinst_HEADERS = $(h_linkdef) $(dict_h_sources)
|
noinst_HEADERS = $(h_linkdef) $(dict_h_sources)
|
||||||
|
|
||||||
|
@ -57,8 +57,8 @@ class PPhotoMeissner : public PUserFcnBase
|
|||||||
|
|
||||||
Bool_t fValid; ///< flag indicating if initialization went through smoothly
|
Bool_t fValid; ///< flag indicating if initialization went through smoothly
|
||||||
|
|
||||||
static const Double_t fDegToRad = 0.0174532925199432955;
|
constexpr static const Double_t fDegToRad = 0.0174532925199432955;
|
||||||
static const Double_t fTwoPi = 6.28318530717958623;
|
constexpr static const Double_t fTwoPi = 6.28318530717958623;
|
||||||
|
|
||||||
Double_t InuMinus(const Double_t nu, const Double_t x) const;
|
Double_t InuMinus(const Double_t nu, const Double_t x) const;
|
||||||
Double_t FieldFilm(const Double_t z, const vector<Double_t> &par) const;
|
Double_t FieldFilm(const Double_t z, const vector<Double_t> &par) const;
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
|
@ -20,6 +20,11 @@ dict_cpp_sources = \
|
|||||||
PStartupHandler_SVDict.cpp \
|
PStartupHandler_SVDict.cpp \
|
||||||
PSkewedLorentzianDict.cpp
|
PSkewedLorentzianDict.cpp
|
||||||
|
|
||||||
|
pcmdir = $(libdir)
|
||||||
|
pcm_DATA = \
|
||||||
|
PStartupHandler_SVDict_rdict.pcm \
|
||||||
|
PSkewedLorentzianDict_rdict.pcm
|
||||||
|
|
||||||
include_HEADERS = $(h_sources)
|
include_HEADERS = $(h_sources)
|
||||||
noinst_HEADERS = $(h_linkdef) $(dict_h_sources)
|
noinst_HEADERS = $(h_linkdef) $(dict_h_sources)
|
||||||
|
|
||||||
|
@ -59,8 +59,8 @@ class PSkewedLorentzian : public PUserFcnBase
|
|||||||
UInt_t fNoOfFields; ///< number of sampling points in field around the Lorentzian peak
|
UInt_t fNoOfFields; ///< number of sampling points in field around the Lorentzian peak
|
||||||
Double_t fRange; ///< range in which the sampling points are placed, given in units of \beta(1\pm\Delta)
|
Double_t fRange; ///< range in which the sampling points are placed, given in units of \beta(1\pm\Delta)
|
||||||
|
|
||||||
static const Double_t fDegToRad = 0.0174532925199432955;
|
constexpr static const Double_t fDegToRad = 0.0174532925199432955;
|
||||||
static const Double_t fTwoPi = 6.28318530717958623;
|
constexpr static const Double_t fTwoPi = 6.28318530717958623;
|
||||||
|
|
||||||
// definition of the class for the ROOT dictionary
|
// definition of the class for the ROOT dictionary
|
||||||
ClassDef(PSkewedLorentzian, 1)
|
ClassDef(PSkewedLorentzian, 1)
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
|
5
src/external/libZFRelaxation/Makefile.am
vendored
5
src/external/libZFRelaxation/Makefile.am
vendored
@ -15,6 +15,9 @@ cpp_sources = \
|
|||||||
dict_cpp_sources = \
|
dict_cpp_sources = \
|
||||||
ZFRelaxationDict.cpp
|
ZFRelaxationDict.cpp
|
||||||
|
|
||||||
|
pcmdir = $(libdir)
|
||||||
|
pcm_DATA = ZFRelaxationDict_rdict.pcm
|
||||||
|
|
||||||
include_HEADERS = $(h_sources)
|
include_HEADERS = $(h_sources)
|
||||||
noinst_HEADERS = $(h_linkdef) $(dict_h_sources)
|
noinst_HEADERS = $(h_linkdef) $(dict_h_sources)
|
||||||
|
|
||||||
@ -23,7 +26,7 @@ AM_CXXFLAGS = $(LOCAL_LIB_CXXFLAGS)
|
|||||||
|
|
||||||
BUILT_SOURCES = $(dict_cpp_sources) $(dict_h_sources)
|
BUILT_SOURCES = $(dict_cpp_sources) $(dict_h_sources)
|
||||||
AM_LDFLAGS = $(LOCAL_LIB_LDFLAGS) -L@ROOTLIBDIR@
|
AM_LDFLAGS = $(LOCAL_LIB_LDFLAGS) -L@ROOTLIBDIR@
|
||||||
CLEANFILES = *Dict.cpp *Dict.h *~ core
|
CLEANFILES = *Dict.cpp *Dict.h *Dict* *~ core
|
||||||
|
|
||||||
%Dict.cpp %Dict.h: %.h %LinkDef.h
|
%Dict.cpp %Dict.h: %.h %LinkDef.h
|
||||||
@ROOTCINT@ -v -f $*Dict.cpp -c -p $(AM_CPPFLAGS) $^
|
@ROOTCINT@ -v -f $*Dict.cpp -c -p $(AM_CPPFLAGS) $^
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
// root dictionary stuff --------------------------------------------------
|
// root dictionary stuff --------------------------------------------------
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
@ -37,6 +37,6 @@
|
|||||||
#pragma link C++ class ZFMagExp+;
|
#pragma link C++ class ZFMagExp+;
|
||||||
#pragma link C++ class UniaxialStatGssKT+;
|
#pragma link C++ class UniaxialStatGssKT+;
|
||||||
|
|
||||||
#endif //__CINT__
|
#endif //__CLING__
|
||||||
// root dictionary stuff --------------------------------------------------
|
// root dictionary stuff --------------------------------------------------
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
|
@ -37,7 +37,7 @@ using namespace std;
|
|||||||
#include <TString.h>
|
#include <TString.h>
|
||||||
|
|
||||||
// the following ifdef is needed for GCC 4.6 or higher, fftw 3.3 or higher and root 5.30.03 or lower
|
// the following ifdef is needed for GCC 4.6 or higher, fftw 3.3 or higher and root 5.30.03 or lower
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
typedef struct { char a[7]; } __float128; // needed since cint doesn't know it
|
typedef struct { char a[7]; } __float128; // needed since cint doesn't know it
|
||||||
#endif
|
#endif
|
||||||
#include "fftw3.h"
|
#include "fftw3.h"
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
|
@ -45,7 +45,7 @@
|
|||||||
<x>10</x>
|
<x>10</x>
|
||||||
<y>10</y>
|
<y>10</y>
|
||||||
<width>421</width>
|
<width>421</width>
|
||||||
<height>25</height>
|
<height>35</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||||||
@ -74,6 +74,19 @@
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
|
<widget class="QPushButton" name="fDefaultPath_pushButton">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>10</x>
|
||||||
|
<y>50</y>
|
||||||
|
<width>421</width>
|
||||||
|
<height>31</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Change Default Search Paths</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QWidget" name="fMusrfit_tab">
|
<widget class="QWidget" name="fMusrfit_tab">
|
||||||
<attribute name="title">
|
<attribute name="title">
|
||||||
@ -121,9 +134,9 @@
|
|||||||
<widget class="QCheckBox" name="fTitleFromData_checkBox">
|
<widget class="QCheckBox" name="fTitleFromData_checkBox">
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
<rect>
|
<rect>
|
||||||
<x>170</x>
|
<x>190</x>
|
||||||
<y>10</y>
|
<y>10</y>
|
||||||
<width>171</width>
|
<width>241</width>
|
||||||
<height>23</height>
|
<height>23</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
@ -134,9 +147,9 @@
|
|||||||
<widget class="QCheckBox" name="fPerRunBlockChisq_checkBox">
|
<widget class="QCheckBox" name="fPerRunBlockChisq_checkBox">
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
<rect>
|
<rect>
|
||||||
<x>170</x>
|
<x>190</x>
|
||||||
<y>35</y>
|
<y>35</y>
|
||||||
<width>191</width>
|
<width>241</width>
|
||||||
<height>22</height>
|
<height>22</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
@ -147,9 +160,9 @@
|
|||||||
<widget class="QCheckBox" name="fEstimateN0_checkBox">
|
<widget class="QCheckBox" name="fEstimateN0_checkBox">
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
<rect>
|
<rect>
|
||||||
<x>170</x>
|
<x>190</x>
|
||||||
<y>60</y>
|
<y>60</y>
|
||||||
<width>161</width>
|
<width>241</width>
|
||||||
<height>22</height>
|
<height>22</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
@ -167,7 +180,7 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>10</x>
|
<x>10</x>
|
||||||
<y>10</y>
|
<y>10</y>
|
||||||
<width>141</width>
|
<width>421</width>
|
||||||
<height>22</height>
|
<height>22</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
@ -180,7 +193,7 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>10</x>
|
<x>10</x>
|
||||||
<y>40</y>
|
<y>40</y>
|
||||||
<width>231</width>
|
<width>421</width>
|
||||||
<height>21</height>
|
<height>21</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
|
@ -97,4 +97,6 @@ install: all
|
|||||||
ifeq ($(OS),LINUX)
|
ifeq ($(OS),LINUX)
|
||||||
cp -pv $(SHLIB) $(ROOTSYS)/lib
|
cp -pv $(SHLIB) $(ROOTSYS)/lib
|
||||||
cp -pv PSimulateMuTransition.h $(ROOTSYS)/include
|
cp -pv PSimulateMuTransition.h $(ROOTSYS)/include
|
||||||
|
# for root6
|
||||||
|
cp -pv PSimulateMuTransitionDict_rdict.pcm $(ROOTSYS)/lib
|
||||||
endif
|
endif
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
|
@ -71,7 +71,7 @@ class PFunctionHandler
|
|||||||
};
|
};
|
||||||
|
|
||||||
// cint dictionary stuff --------------------------------------
|
// cint dictionary stuff --------------------------------------
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
@ -79,7 +79,7 @@ class PFunctionHandler
|
|||||||
|
|
||||||
#pragma link C++ class PFunctionHandler+;
|
#pragma link C++ class PFunctionHandler+;
|
||||||
|
|
||||||
#endif // end __CINT__
|
#endif // end __CLING__
|
||||||
//-------------------------------------------------------------
|
//-------------------------------------------------------------
|
||||||
|
|
||||||
#endif // _PFUNCTIONHANDLER_H_
|
#endif // _PFUNCTIONHANDLER_H_
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#ifdef __CINT__
|
#ifdef __CLING__
|
||||||
|
|
||||||
#pragma link off all globals;
|
#pragma link off all globals;
|
||||||
#pragma link off all classes;
|
#pragma link off all classes;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user