#ifndef ROOT_RVersion
#define ROOT_RVersion

/* Version information automatically generated by installer. */

/*
 * These macros can be used in the following way:
 *
 *    #if ROOT_VERSION_CODE >= ROOT_VERSION(2,23,4)
 *       #include <newheader.h>
 *    #else
 *       #include <oldheader.h>
 *    #endif
 *
*/

#define ROOT_RELEASE "5.33/03"
#define ROOT_RELEASE_DATE "Mar  6 2012"
#define ROOT_RELEASE_TIME "11:03:28"
#define ROOT_SVN_REVISION 43245
#define ROOT_SVN_BRANCH "trunk"
#define ROOT_VERSION_CODE 336131
#define ROOT_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))

#endif