Errors Compiling C Program to Create HDF5 File (6)

Dear Mohammed,
Thanks for your reply. I have created all the groups, see lines 712-719:

group1 = H5Gcreate \(file, "/elementData", gcpl1, H5P\_DEFAULT, H5P\_DEFAULT\);
group2 = H5Gcreate \(file, "/phaseData", gcpl2, H5P\_DEFAULT, H5P\_DEFAULT\);
group3 = H5Gcreate \(file, "/reactionData", gcpl3, H5P\_DEFAULT, H5P\_DEFAULT\);
group4 = H5Gcreate \(file, "/speciesData", gcpl4, H5P\_DEFAULT, H5P\_DEFAULT\);
group5 = H5Gcreate \(file, "/reactionData/arrheniusData", gcpl5, H5P\_DEFAULT, H5P\_DEFAULT\);
group6 = H5Gcreate \(file, "/reactionData/falloffData", gcpl6, H5P\_DEFAULT, H5P\_DEFAULT\);
group7 = H5Gcreate \(file, "/reactionData/rateCoefLinks", gcpl7,

H5P_DEFAULT, H5P_DEFAULT);
group8 = H5Gcreate (file, "/speciesData/thermoPolynomials", gcpl8, H5P_DEFAULT, H5P_DEFAULT);

Kind regardsGokop

The error you are seeing is in dataset37 (on line 427), that happens before creating any of those groups.
Please check your code for that specific line. I'm looking at the code you sent to the list.

Thanks,
Mohamad

···

From: Hdf-forum [mailto:hdf-forum-bounces@lists.hdfgroup.org] On Behalf Of Gokop Goteng
Sent: Monday, January 13, 2014 11:56 AM
To: hdf-forum@lists.hdfgroup.org
Subject: [Hdf-forum] Errors Compiling C Program to Create HDF5 File (6)

Dear Mohammed,
Thanks for your reply. I have created all the groups, see lines 712-719:

    group1 = H5Gcreate (file, "/elementData", gcpl1, H5P_DEFAULT, H5P_DEFAULT);
    group2 = H5Gcreate (file, "/phaseData", gcpl2, H5P_DEFAULT, H5P_DEFAULT);
    group3 = H5Gcreate (file, "/reactionData", gcpl3, H5P_DEFAULT, H5P_DEFAULT);
    group4 = H5Gcreate (file, "/speciesData", gcpl4, H5P_DEFAULT, H5P_DEFAULT);
    group5 = H5Gcreate (file, "/reactionData/arrheniusData", gcpl5, H5P_DEFAULT, H5P_DEFAULT);
    group6 = H5Gcreate (file, "/reactionData/falloffData", gcpl6, H5P_DEFAULT, H5P_DEFAULT);
    group7 = H5Gcreate (file, "/reactionData/rateCoefLinks", gcpl7, H5P_DEFAULT, H5P_DEFAULT);
    group8 = H5Gcreate (file, "/speciesData/thermoPolynomials", gcpl8, H5P_DEFAULT, H5P_DEFAULT);

Kind regards
Gokop