Remove gmx custom fixed int (e.g. gmx_int64_t) types
[alexxy/gromacs.git] / src / gromacs / mdlib / boxdeformation.h
index 6f7d3afd803eca6f2e44fe58970629e594dc4f32..ba5bcbe19a93efe177e78ebec2925ed38eafd182 100644 (file)
@@ -61,20 +61,20 @@ class BoxDeformation
     public:
         //! Trivial constructor.
         BoxDeformation(double        timeStep,
-                       gmx_int64_t   initialStep,
+                       int64_t       initialStep,
                        const tensor &deformationTensor,
                        const matrix &referenceBox);
 
         //! Deform \c x and \c box at this \c step;
         void apply(ArrayRef<RVec> x,
                    matrix         box,
-                   gmx_int64_t    step);
+                   int64_t        step);
 
     private:
         //! The integrator time step.
         double      timeStep_;
         //! The initial step number (from the .tpr, which permits checkpointing to work correctly).
-        gmx_int64_t initialStep_;
+        int64_t     initialStep_;
         //! Non-zero elements provide a scaling factor for deformation in that box dimension.
         tensor      deformationTensor_;
         //! The initial box, ie from the .tpr file.