File: LabelSet.hh

package info (click to toggle)
topcom 1.1.2%2Bds-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 31,788 kB
  • sloc: cpp: 37,616; sh: 4,262; makefile: 497; ansic: 49
file content (37 lines) | stat: -rw-r--r-- 743 bytes parent folder | download | duplicates (2)
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