Revision 70c671d7a4e18c1a514e1c86bf2b8e098abd99eb authored by edwards on 14 January 2005, 20:11:12 UTC, committed by edwards on 14 January 2005, 20:11:12 UTC
1 parent da94545
Raw File
chroma_init.h
#ifndef __CHROMA_INIT_H__
#define __CHROMA_INIT_H__

#include "chroma.h"
#include <string>

using namespace QDP;
using namespace std;

namespace Chroma {

  //! Chroma initialisation routine
  void ChromaInitialize(int* argc, char ***argv);

  //! Chroma finalization routine
  void ChromaFinalize(void);

  //! Chroma abort routine
  void ChromaAbort(int i);

}; // End namespace Chroma

#endif
back to top