Class DispersionPlugin
- java.lang.Object
-
- cern.accsoft.steering.aloha.plugin.api.AbstractAlohaPlugin
-
- cern.accsoft.steering.aloha.plugin.disp.DispersionPlugin
-
- All Implemented Interfaces:
AlohaBeanFactoryAware,BeanAware,AlohaPlugin,AnalyzerFactory,ReaderProvider,SensitivityMatrixContributorFactory
public class DispersionPlugin extends AbstractAlohaPlugin implements SensitivityMatrixContributorFactory, AnalyzerFactory, ReaderProvider
-
-
Field Summary
-
Fields inherited from class cern.accsoft.steering.aloha.plugin.api.AbstractAlohaPlugin
alohaBeanFactory
-
-
Constructor Summary
Constructors Constructor Description DispersionPlugin()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<Analyzer>createAnalyzers(Measurement measurement)an implementation of this method can return an arbitrary amount of analyzers for the given measurement.java.util.List<SensitivityMatrixContributor>createContributors(Measurement measurement)creates one or moreSensitivityMatrixContributors for the given measurementjava.lang.StringgetName()java.util.List<Reader>getReaders()This has to return a list, which contains readers for certain measurements.voidinit()this method will be called automatically by theAlohaBeanFactory-
Methods inherited from class cern.accsoft.steering.aloha.plugin.api.AbstractAlohaPlugin
getAlohaBeanFactory, setAlohaBeanFactory
-
-
-
-
Method Detail
-
init
public void init()
this method will be called automatically by theAlohaBeanFactory
-
createContributors
public java.util.List<SensitivityMatrixContributor> createContributors(Measurement measurement)
Description copied from interface:SensitivityMatrixContributorFactorycreates one or moreSensitivityMatrixContributors for the given measurement- Specified by:
createContributorsin interfaceSensitivityMatrixContributorFactory- Parameters:
measurement- the measurement for which to create theSensitivityMatrixContributors- Returns:
- a list of
SensitivityMatrixContributors
-
createAnalyzers
public java.util.List<Analyzer> createAnalyzers(Measurement measurement)
Description copied from interface:AnalyzerFactoryan implementation of this method can return an arbitrary amount of analyzers for the given measurement. They all will be plugged into everyDisplaySetfor this measurment.- Specified by:
createAnalyzersin interfaceAnalyzerFactory- Returns:
-
getName
public java.lang.String getName()
- Specified by:
getNamein interfaceAlohaPlugin- Returns:
- the name of the plugin
-
getReaders
public java.util.List<Reader> getReaders()
Description copied from interface:ReaderProviderThis has to return a list, which contains readers for certain measurements.- Specified by:
getReadersin interfaceReaderProvider- Returns:
- a list of
Readers
-
-