flexiblesusy is hosted by Hepforge, IPPP Durham
FlexibleSUSY
types.h
Go to the documentation of this file.
1* types.h
2* real-based type declarations
3* this file is part of LoopTools
4* last modified 9 Jul 12 th
5
6
7#ifndef TYPES_H
8#define TYPES_H
9
10#define RealType double precision
11#define ComplexType double complex
12#define Re DBLE
13#define Im DIMAG
14#define Conjugate DCONJG
15#define ToComplex DCMPLX
16
17#define Sq(c) Re((c)*Conjugate(c))
18#define Sqrtc(c) sqrt(ToComplex(c))
19
20#endif
21