DFT-FE 1.1.0-pre
Density Functional Theory With Finite-Elements
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MPIWriteOnFile.h
Go to the documentation of this file.
1//
2// -------------------------------------------------------------------------------------
3//
4// Copyright (c) 2017-2025 The Regents of the University of Michigan and DFT-FE
5// authors.
6//
7// This file is part of the DFT-FE code.
8//
9// The DFT-FE code is free software; you can use it, redistribute
10// it, and/or modify it under the terms of the GNU Lesser General
11// Public License as published by the Free Software Foundation; either
12// version 2.1 of the License, or (at your option) any later version.
13// The full text of the license can be found in the file LICENSE at
14// the top level of the DFT-FE distribution.
15//
16// --------------------------------------------------------------------------------------
17//
18// @author nelrufus, vishal subramanian
19//
20
21#ifndef DFTFE_MPIWRITEONFILE_H
22#define DFTFE_MPIWRITEONFILE_H
23
24#include "CompositeData.h"
25#include <string>
26#include <vector>
27namespace dftfe
28{
29 namespace dftUtils
30 {
32 {
33 public:
34 static void
35 writeData(const std::vector<CompositeData *> &data,
36 const std::string & fileName,
37 const MPI_Comm & mpiComm);
38 };
39 } // namespace dftUtils
40} // namespace dftfe
41
42#endif // DFTFE_MPIWRITEONFILE_H
Definition MPIWriteOnFile.h:32
static void writeData(const std::vector< CompositeData * > &data, const std::string &fileName, const MPI_Comm &mpiComm)
Contains repeatedly used functions in the KSDFT calculations.
Definition CompositeData.h:29
Definition pseudoPotentialToDftfeConverter.cc:34