~vcs-imports/xdrawchem/1.9.9

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef PEAK_H
#define PEAK_H

#define PEAK_REACTANT 1
#define PEAK_PRODUCT 2

class Peak {
 public:
  int r_p;  // reactant or product?
  double value;
  int multiplicity;
  int intensity;
  QString comment;
};

#endif