View Javadoc

1   package uk.ac.cam.spectra.nmr;
2   
3   import uk.ac.cam.spectra.Constants;
4   import uk.ac.cam.spectra.IntegerProperty;
5   import uk.ac.cam.spectra.LiteralProperty;
6   
7   /**
8    * Metadata dictionary of the metadata fields used in SPECTRa.
9    * @author ojd20
10   *
11   */
12  public class NMRMetadata {
13  
14  	public static final IntegerProperty spectrum_dimensions = new IntegerProperty(
15  			Constants.SPECTRA_NMR_NS, "spectrum_dimensions");;
16  
17  	public static final LiteralProperty spectrum_nucleus = new LiteralProperty(
18  			Constants.SPECTRA_NMR_NS, "spectrum_nucleus");
19  
20  	public static final LiteralProperty pulse_sequence = new LiteralProperty(
21  			Constants.SPECTRA_NMR_NS, "pulse_sequence");
22  
23  	public static final LiteralProperty solvent = new LiteralProperty(
24  			Constants.SPECTRA_NMR_NS, "solvent");
25  
26  	public static final LiteralProperty temperature = new LiteralProperty(
27  			Constants.SPECTRA_NMR_NS, "temperature");
28  
29  }