//this file looks like plain C, but it's actually -*- c++ -*-
#ifndef TQSYSTEMATICS
#define TQSYSTEMATICS

namespace TQSystematics {
  enum Status {
    UNKNOWN=0,
    ACTIVE=1,
    FIXED=2,
    ZERO=3,
    DROPPED=4,
    OVERSHOOT=5,
    ONESIDED=6,
    INSIGNIFICANT=7,
    SYMMETRIZED=8,
    SMOOTHED=9,
  };
  const char* name(Status s);
  const char* name(int s);
}

#endif
 TQSystematics.h:1
 TQSystematics.h:2
 TQSystematics.h:3
 TQSystematics.h:4
 TQSystematics.h:5
 TQSystematics.h:6
 TQSystematics.h:7
 TQSystematics.h:8
 TQSystematics.h:9
 TQSystematics.h:10
 TQSystematics.h:11
 TQSystematics.h:12
 TQSystematics.h:13
 TQSystematics.h:14
 TQSystematics.h:15
 TQSystematics.h:16
 TQSystematics.h:17
 TQSystematics.h:18
 TQSystematics.h:19
 TQSystematics.h:20
 TQSystematics.h:21
 TQSystematics.h:22