Bimetric 3+1 toolkit for spherical symmetry
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
grid/gridInitialData.h
Go to the documentation of this file.
00001 /**
00002  *  @file      gridInitialData.h
00003  *  @brief     Reads initial data into the grid.
00004  *  @author    Mikica Kocic
00005  *  @copyright GNU General Public License (GPLv3).
00006  */
00007 
00008 #include <string>
00009 #include <vector>
00010 #include <cstdio>
00011 
00012 /** Reads the initial data from the given file.
00013  */
00014 class GridInitialData : GridUser
00015 {
00016     bool  binaryFormat;   //!< Read binary data from the input file.
00017     std::string fileName; //!< Input filename.
00018     std::vector<Int> input; //! The list of grid functions
00019 
00020 public:
00021 
00022     /** Constructs the initial data reader as specified in the parameter file.
00023      */
00024     GridInitialData( Parameters& params, UniformGrid& ug )
00025         : GridUser(ug), binaryFormat(false)
00026     {
00027         input.reserve( 256 );
00028         input.push_back( fld::r );
00029 
00030         params.get( "input.file",   fileName, "stdin" );
00031         params.get( "input.binary", binaryFormat, true );
00032 
00033         slog << "Initial Data:" << std::endl << std::endl
00034              << "    file = " << fileName << ",  binary = " << binaryFormat
00035              << std::endl << std::endl;
00036     }
00037 
00038     /** The given grid functions will be read as the initial data.
00039      */
00040     GridInitialData& addGFs( const std::vector<Int>& gfs )
00041     {
00042         input.insert( input.end(), gfs.begin(), gfs.end() );
00043         return *this;
00044     }
00045 
00046     /** Loads the initial data.
00047      */
00048     bool load ()
00049     {
00050         FILE* inf = fileName == "stdin" ? stdin
00051                   : fopen( fileName.c_str(), binaryFormat ? "rb" : "r" );
00052         if( ! inf ) {
00053             std::cerr << "Error: Could not open " << fileName << std::endl;
00054             return false;
00055         }
00056 
00057         if ( mpiSize () > 1 ) {
00058             Int offset = gridDriver->get_nOffset() * input.size() * sizeof(Real);
00059             fseek( inf, offset, SEEK_SET );
00060         }
00061 
00062         for( Int n = nGhost; n < nGhost + nLen; ++n )
00063         {
00064             // GF( fld::mpiRank, 0, n  ) = mpiRank ();
00065             if( ! GridPoint( *gridDriver, 0, n ).read( inf, binaryFormat, input ) ) {
00066                 return false;
00067             }
00068         }
00069 
00070         if ( inf != stdin ) {
00071             fclose( inf );
00072         }
00073 
00074         return true;
00075     }
00076 };