Skip to content
Snippets Groups Projects
Commit a8f1a160 authored by Podhorszki, Norbert's avatar Podhorszki, Norbert
Browse files

clang-format

parent f595d9d1
No related branches found
No related tags found
1 merge request!41ADIOS1 Write engine, Selections, Variable.SetSelection() and updated Heat Transfer example
...@@ -99,7 +99,7 @@ public: ...@@ -99,7 +99,7 @@ public:
private: private:
void Init(); ///< called from constructor, gets the selected ADIOS1 void Init(); ///< called from constructor, gets the selected ADIOS1
///transport method from settings /// transport method from settings
template <class T> template <class T>
Variable<T> *InquireVariableCommon(const std::string name, Variable<T> *InquireVariableCommon(const std::string name,
......
...@@ -51,7 +51,7 @@ enum ADIOS_SELECTION_TYPE ...@@ -51,7 +51,7 @@ enum ADIOS_SELECTION_TYPE
{ {
ADIOS_SELECTION_BOUNDINGBOX = 0, /* Contiguous block of data defined by ADIOS_SELECTION_BOUNDINGBOX = 0, /* Contiguous block of data defined by
offsets and counts in each dimension */ offsets and counts in each dimension */
ADIOS_SELECTION_POINTS = 1, /* List of individual points */ ADIOS_SELECTION_POINTS = 1, /* List of individual points */
ADIOS_SELECTION_WRITEBLOCK = ADIOS_SELECTION_WRITEBLOCK =
2, /* Selection of an individual block written by a writer process */ 2, /* Selection of an individual block written by a writer process */
ADIOS_SELECTION_AUTO = 3 /* Let the method decide what to return */ ADIOS_SELECTION_AUTO = 3 /* Let the method decide what to return */
...@@ -85,7 +85,7 @@ typedef struct ...@@ -85,7 +85,7 @@ typedef struct
uint64_t npoints; uint64_t npoints;
uint64_t *points; uint64_t *points;
ADIOS_SELECTION ADIOS_SELECTION
*container_selection; // a writeblock, a bounding box, or NULL *container_selection; // a writeblock, a bounding box, or NULL
} ADIOS_SELECTION_POINTS_STRUCT; } ADIOS_SELECTION_POINTS_STRUCT;
/* A selected block produced by a writer /* A selected block produced by a writer
......
...@@ -27,7 +27,6 @@ ADIOS1Reader::ADIOS1Reader(ADIOS &adios, const std::string name, ...@@ -27,7 +27,6 @@ ADIOS1Reader::ADIOS1Reader(ADIOS &adios, const std::string name,
{ {
Init(); Init();
adios_read_init_method(read_method, m_MPIComm, ""); adios_read_init_method(read_method, m_MPIComm, "");
} }
ADIOS1Reader::~ADIOS1Reader() { adios_read_finalize_method(read_method); } ADIOS1Reader::~ADIOS1Reader() { adios_read_finalize_method(read_method); }
...@@ -174,5 +173,4 @@ void ADIOS1Reader::Init() ...@@ -174,5 +173,4 @@ void ADIOS1Reader::Init()
} }
} }
} // end namespace } // end namespace
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment