Esempio n. 1
0
    def list_features(self):
        u"""
        Return list of available features

        :rtype: list of string
        """
	return FeatureFactory.list()
Esempio n. 2
0
    def get_feature(self,name,**kwargs):
        u"""
        compute feature

        :param name: feature name 
        :type string: 
        :param kwargs : optional pyofile
        (string) to produce pynocchio file (hdf5 file format
        """
	f = FeatureFactory.get_feature(name,**kwargs)
	return f.get(self)