コード例 #1
0
ファイル: cube_add.cpp プロジェクト: RMeli/CubeTools
int main(int argc,char *argv[])
{
    cerr << "\n#########" << endl;
    cerr << "CUBE_ADD" << endl;
    cerr << "#########\n" << endl;

    // Check the number of commandi line arguments
    if( argc < 3)
    {
        cerr << "ERROR: Invalid number of arguments." << endl;
        cerr << "       You should provide at least two cube files." << endl;

        exit(-1);
    }

    // Load first cube file
    string s(argv[1]);
    cerr << "Loading... " << s;
    Cube tmp(s);
    cerr << " ...Loaded!" << endl;



    // Declare output cube file
    Cube out;

    // Copy the header of tmp
    out.copy_header(tmp); // Also resize data and fill it with zeros

    for(int i(1); i < argc; i++)
    {
        out = out + tmp;

        if( (i+1) != argc )
        {
            // Load successive cube file
            s = argv[i+1];
            cerr << "Loading... " << s;
            tmp = Cube(s);
            cerr << " ...Loaded!" << endl;
        }
    }

    out.print(cout);

    cerr << "\nCUBE_ADD ended succesfully!\n" << endl;

    return 0;
}