Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:10:26

0001 /*
0002  * Project: RooFit
0003  * Author:
0004  *   Will Buttinger, RAL 2022
0005  *
0006  * Copyright (c) 2022, CERN
0007  *
0008  * Redistribution and use in source and binary forms,
0009  * with or without modification, are permitted according to the terms
0010  * listed in LICENSE (http://roofit.sourceforge.net/license.txt)
0011  */
0012 
0013 #ifndef xRooFit_Config_h
0014 #define xRooFit_Config_h
0015 
0016 // ROOT configuration: all of xRooFit is placed into a detail namespace
0017 #define XROOFIT_NAMESPACE ROOT::Experimental::XRooFit
0018 
0019 // Define XROOFIT_USE_PRAGMA_ONCE if you want to use "pragma once" instead of
0020 // header guards
0021 // # define XROOFIT_USE_PRAGMA_ONCE
0022 
0023 #ifdef XROOFIT_NAMESPACE
0024 #define BEGIN_XROOFIT_NAMESPACE namespace XROOFIT_NAMESPACE {
0025 #define END_XROOFIT_NAMESPACE } // namespace XROOFIT_NAMESPACE
0026 #else
0027 #define BEGIN_XROOFIT_NAMESPACE
0028 #define END_XROOFIT_NAMESPACE
0029 #endif
0030 
0031 #endif