Newer
Older
TestStandRepository / Software / Tools / Useful.C
@Federica Lionetto Federica Lionetto on 6 Nov 2014 581 bytes Add attenuation scan and find strip
//************************************************
// Author: Federica Lionetto
// Created on: 06/11/2014
//************************************************

/*
List of useful tools.
*/

// Header guard.
#ifndef __USEFUL_C_INCLUDED__
#define __USEFUL_C_INCLUDED__

#include "Lib.C"

//************************************************
//
// Declarations.
//

// bool file_exists(const char *filename);

//************************************************
//
// Definitions.
//

/*
bool file_exists(const char *filename) {
    ifstream ifile(filename);
    return ifile;
}
*/

#endif