FRIBParallelanalysis  1.0
FrameworkforMPIParalleldataanalysisatFRIB
SpecTclTypes.h
1 /*
2  This software is Copyright by the Board of Trustees of Michigan
3  State University (c) Copyright 2017.
4 
5  You may use this software under the terms of the GNU public license
6  (GPL). The terms of this license are described at:
7 
8  http://www.gnu.org/licenses/gpl.txt
9 
10  Authors:
11  Ron Fox
12  Giordano Cerriza
13  FRIB
14  Michigan State University
15  East Lansing, MI 48824-1321
16 */
17 
21 #ifndef SPECTCL_TYPES_H
22 #define SPECTCL_TYPES_H
23 #include <stdint.h>
24 
25 typedef void* Address_t;
26 typedef unsigned UInt_t;
27 typedef int Int_t;
28 typedef uint16_t UShort_t;
29 typedef int16_t Short_t;
30 typedef bool Bool_t;
31 
32 #ifndef kfTRUE
33 #define kfTRUE true
34 #endif
35 #ifndef kfFALSE
36 #define kfFALSE false
37 #endif
38 #endif