Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RealType.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file RealType.h
1 /*******************************************************************************
2  * Copyright (c) The JETSCAPE Collaboration, 2018
3  *
4  * Modular, task-based framework for simulating all aspects of heavy-ion collisions
5  *
6  * For the list of contributors see AUTHORS.
7  *
8  * Report issues at https://github.com/JETSCAPE/JETSCAPE/issues
9  *
10  * or via email to bugs.jetscape@gmail.com
11  *
12  * Distributed under the GNU General Public License 3.0 (GPLv3 or later).
13  * See COPYING for details.
14  ******************************************************************************/
15 
16 // This is a general configuration for all files
17 
18 #ifndef REALTYPE_H
19 #define REALTYPE_H
20 #include <tuple>
21 
22 namespace Jetscape {
23 
24 typedef float real;
25 typedef std::tuple<real, real, real> real3;
26 typedef std::tuple<real, real, real, real> real4;
27 
28 } // end namespace Jetscape
29 
30 #endif // REALTYPE_H