Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
#ifndef FastSimulation_Utilities_FamosDebug_H
#define FastSimulation_Utilities_FamosDebug_H

// Uncomment the following line to include the debugging code in the
// library

// getClosestCell
//#define DEBUGGCC
// GetWindow
//#define DEBUGGW

//#define DEBUGCELLLINE

// Don't change the following
#ifdef DEBUGGCC
#define FAMOSDEBUG
#endif

#ifdef DEBUGGW
#define FAMOSDEBUG
#endif

#ifdef DEBUGCELLLINE
#define FAMOSDEBUG
#endif

#ifdef FAMOSDEBUG
#include "FastSimulation/Utilities/interface/Histos.h"
#endif

#endif