Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
Config.h
Go to the documentation of this file.
1/*
2 * Project: RooFit
3 * Author:
4 * Will Buttinger, RAL 2022
5 *
6 * Copyright (c) 2022, CERN
7 *
8 * Redistribution and use in source and binary forms,
9 * with or without modification, are permitted according to the terms
10 * listed in LICENSE (http://roofit.sourceforge.net/license.txt)
11 */
12
13#ifndef xRooFit_Config_h
14#define xRooFit_Config_h
15
16// ROOT configuration: all of xRooFit is placed into a detail namespace
17#define XROOFIT_NAMESPACE RooFit::Detail::XRooFit
18
19// Define XROOFIT_USE_PRAGMA_ONCE if you want to use "pragma once" instead of
20// header guards
21// # define XROOFIT_USE_PRAGMA_ONCE
22
23#ifdef XROOFIT_NAMESPACE
24#define BEGIN_XROOFIT_NAMESPACE namespace XROOFIT_NAMESPACE {
25#define END_XROOFIT_NAMESPACE } // namespace XROOFIT_NAMESPACE
26#else
27#define BEGIN_XROOFIT_NAMESPACE
28#define END_XROOFIT_NAMESPACE
29#endif
30
31#endif