Skip to content
Snippets Groups Projects
Commit 911ec85b authored by KyleKlenk's avatar KyleKlenk
Browse files

moved files to separate fortran from cpp

within the file_access_actor

added the start of subroutine for the file_access_actor to send attribute data
parent 2a742349
No related branches found
No related tags found
No related merge requests found
......@@ -27,6 +27,17 @@ struct file_access_state {
std::vector<Forcing_File_Info> forcing_file_list; // list of steps in file
std::vector<bool> outputFileInitHRU;
// vector of handles for attributes
std::vector<void *> type_struct_handles;
std::vector<void *> id_struct_handles;
std::vector<void *> attr_struct_handles;
// vector of handles for parameters
std::vector<void *> mpar_struct_handles;
std::vector<void *> bpar_struct_handles;
// Timing Variables
TimingInfo file_access_timing;
};
......@@ -38,4 +49,8 @@ int writeOutput(stateful_actor<file_access_state>* self, int indxGRU, int indxHR
int readForcing(stateful_actor<file_access_state>* self, int currentFile);
int write(stateful_actor<file_access_state>* self, int listIndex);
// Read in the attributes for all HRUs that are in the run-domain
void readAttributes(stateful_actor<file_access_state>* self);
} // end namespace
\ No newline at end of file
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