1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
///////////////////////////////////////////////////////////////////////////////
//
// LabelSet.hh
//
// produced: 19/11/19 jr
// last change: 19/11/19 jr
//
////////////////////////////////////////////////////////////////////////////////
#ifndef LABELSET_HH
#define LABELSET_HH
#ifdef MAXNOIS64
#include "IntegerSet64.hh"
namespace topcom {
typedef IntegerSet64 LabelSet;
};
#else
#include "IntegerSet.hh"
namespace topcom {
typedef IntegerSet LabelSet;
};
#endif
#ifndef STL_CONTAINERS
#include "Pair.hh"
namespace topcom {
typedef Pair<LabelSet, LabelSet> signvector_data;
};
#else
#include "ContainerIO.hh"
namespace topcom {
typedef std::pair<LabelSet, LabelSet> signvector_data;
};
#endif
#endif
// eof LabelSet.hh
|