Skip to content

Commit

Permalink
- NMRSHIFT constant field added for sulfur
Browse files Browse the repository at this point in the history
- 	NMRSPECTYPE constant fields added as spectrum type identifiers for 
	e.g. 1D DEPT90 or 2D HSQC experiments
  • Loading branch information
michaelwenk committed Jul 31, 2018
1 parent 2a8830f commit 1dedc8f
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions base/core/src/main/java/org/openscience/cdk/CDKConstants.java
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,70 @@ public class CDKConstants {
* @see org.openscience.cdk.ChemObject
*/
public final static String NMRSHIFT_DEUTERIUM = "deuterium nmr shift";

/**
* Sulfur NMR shift constant for use as a key in the
* IChemObject.physicalProperties hashtable.
*
* @see org.openscience.cdk.ChemObject
*/
public final static String NMRSHIFT_SULFUR = "sulfur nmr shift";

/**
* NMR spectrum type constant for use as key for an arbitrary 1-dimensional
* NMR experiment.
*
* @see casekit.model.NMR#Spectrum
*/
public final static String NMRSPECTYPE_1D = "1D spectrum";

/**
* NMR spectrum type constant for use as key for a 1-dimensional DEPT90
* NMR experiment.
*
* @see casekit.model.NMR#Spectrum
*/
public final static String NMRSPECTYPE_1D_DEPT90 = "DEPT90 spectrum";

/**
* NMR spectrum type constant for use as key for a 1-dimensional DEPT135
* NMR experiment.
*
* @see casekit.model.NMR#Spectrum
*/
public final static String NMRSPECTYPE_1D_DEPT135 = "DEPT135 spectrum";

/**
* NMR spectrum type constant for use as key for a 2-dimensional HSQC
* NMR experiment.
*
* @see casekit.model.NMR#Spectrum
*/
public final static String NMRSPECTYPE_2D_HSQC = "HSQC spectrum";

/**
* NMR spectrum type constant for use as key for a 2-dimensional H,H-COSY
* NMR experiment.
*
* @see casekit.model.NMR#Spectrum
*/
public final static String NMRSPECTYPE_2D_HHCOSY = "HHCOSY spectrum";

/**
* NMR spectrum type constant for use as key for a 2-dimensional INADEQUATE
* NMR experiment.
*
* @see casekit.model.NMR#Spectrum
*/
public final static String NMRSPECTYPE_2D_INADEQUATE = "INADEQUATE spectrum";

/**
* NMR spectrum type constant for use as key for a 2-dimensional HMBC
* NMR experiment.
*
* @see casekit.model.NMR#Spectrum
*/
public final static String NMRSPECTYPE_2D_HMBC = "HMBC spectrum";

/**
* Property key to store the CIP descriptor label for an atom / bond. The
Expand Down

0 comments on commit 1dedc8f

Please sign in to comment.