Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-06-02 08:51:49

0001 #ifndef DOUBLE_H
0002 #define DOUBLE_H
0003 
0004 /**
0005  * @file Double.h
0006  * @author Bryan BERTHOU (SPhN / CEA Saclay)
0007  * @date 19 January 2016
0008  * @version 1.0
0009  */
0010 
0011 #include "BaseType.h"
0012 
0013 namespace PARTONS {
0014 
0015 /**
0016  * @class Double
0017  *
0018  * @brief
0019  */
0020 class Double: public BaseType {
0021 public:
0022     Double();
0023     Double(double value);
0024     virtual ~Double();
0025 
0026     /// Arithmetic operators
0027 
0028 private:
0029     double m_value;
0030 };
0031 
0032 } /* namespace PARTONS */
0033 
0034 #endif /* DOUBLE_H */