Class ElectronImpactNBEReaction
java.lang.Object
org.openscience.cdk.reaction.ReactionEngine
org.openscience.cdk.reaction.type.ElectronImpactNBEReaction
- All Implemented Interfaces:
IReactionProcess
IReactionProcess which make an electron impact for for Non-Bonding Electron Lost. This reaction type is a representation of the processes which occurs in the mass spectrometer.
It is processed by the RemovingSEofNBMechanism class
IAtomContainerSet setOfReactants = DefaultChemObjectBuilder.getInstance().newAtomContainerSet(); setOfReactants.addAtomContainer(new AtomContainer()); IReactionProcess type = new ElectronImpactNBEReaction(); Object[] params = {Boolean.FALSE}; type.setParameters(params); IReactionSet setOfReactions = type.initiate(setOfReactants, null);
We have the possibility to localize the reactive center. Good method if you want to localize the reaction in a fixed point
atoms[0].setFlag(CDKConstants.REACTIVE_CENTER,true);
Moreover you must put the parameter Boolean.TRUE
If the reactive center is not localized then the reaction process will try to find automatically the possible reactive center.
- Author:
- Miguel Rojas
- See Also:
- Dictionary pointer(s):
- Unknown code: reaction-types:electronImpact
- Source code:
- main
- Belongs to CDK module:
- reaction
- Created on:
- 2006-04-01
-
Field Summary
Fields inherited from class org.openscience.cdk.reaction.ReactionEngine
mechanism, paramsMap, paramsMap2
-
Constructor Summary
ConstructorsConstructorDescriptionConstructor of the ElectronImpactNBEReaction object. -
Method Summary
Modifier and TypeMethodDescriptionGets the specification attribute of the ElectronImpactNBEReaction object.initiate
(IAtomContainerSet reactants, IAtomContainerSet agents) Initiate process.Methods inherited from class org.openscience.cdk.reaction.ReactionEngine
getParameterClass, getParameterList, setParameterList
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.openscience.cdk.reaction.IReactionProcess
getParameterClass, getParameterList, setParameterList
-
Constructor Details
-
ElectronImpactNBEReaction
public ElectronImpactNBEReaction()Constructor of the ElectronImpactNBEReaction object.
-
-
Method Details
-
getSpecification
Gets the specification attribute of the ElectronImpactNBEReaction object.- Specified by:
getSpecification
in interfaceIReactionProcess
- Returns:
- The specification value
-
initiate
public IReactionSet initiate(IAtomContainerSet reactants, IAtomContainerSet agents) throws CDKException Initiate process. It is needed to call the addExplicitHydrogensToSatisfyValency from the class tools.HydrogenAdder.- Specified by:
initiate
in interfaceIReactionProcess
- Parameters:
reactants
- Reactants of the reactionagents
- Agents of the reaction (Must be in this case null)- Returns:
- the set of reactions.
- Throws:
CDKException
- Description of the Exception
-