File: ComputeCircuits.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 (28 lines) | stat: -rw-r--r-- 581 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
//////////////////////////////////////////////////////////////////////////
//
// ComputeCircuits.hh
//
//    produced: 16/07/19 jr
// last change: 29/01/2020 jr
//
/////////////////////////////////////////////////////////////////////////
#ifndef COMPUTECIRCUITS_HH
#define COMPUTECIRCUITS_HH

namespace topcom {

#define INPUT_CHIRO     0x0001
#define OUTPUT_CIRCUITS 0x0008
#define PREPROCESS      0x0010
#define FROM_CHIRO      0x0080

  class ComputeCircuits {
  public:
    static int  run (const int flags = 0);
  };

}; // namespace topcom

#endif

// eof ComputeCircuits.hh