File: LabelSet.hh

package info (click to toggle)
topcom 1.2.0~beta%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 148,596 kB
  • sloc: cpp: 40,956; sh: 4,663; makefile: 679; ansic: 55
file content (36 lines) | stat: -rw-r--r-- 717 bytes parent folder | download
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
///////////////////////////////////////////////////////////////////////////////
// 
// LabelSet.hh
//
//    produced: 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

#ifdef TOPCOM_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