Settings/Analysis method

Navigation:  BREIN configuration > Graphical user interface > Submenu Settings >

Settings/Analysis method

Previous pageReturn to chapter overviewNext page

If you modify the method to analyze measured data you might want to record somehow which method has produced the results stored in a database record. In order to do so you can set an integer number as identification or version of the analysis method. Use the command Settings/Analysis method/Set index to specify this number.

The analysis method is made up by the files code.wcd, fit_parameters.fps, first_position.fps and other_position.fps stored in each bright eye folder. Not all of these files are required for each bright eye, so some may be missing. You can store these files as an indexed analysis method using the command Settings/Analysis method/Save to directory. Within the folder of the current product, BREIN will generate a directory analysis_method and therein a folder named after the current index of the analysis method. Within this folder the method files are stored for each bright eye.

In order to load a stored analysis method, use the command Settings/Analysis method/Set index first to specify the wanted index and then apply the command Settings/Analysis method/load from directory.

Alternatively to deposit analysis methods in BREIN database folders you can store method files in an SQL database system (see the 'SQL section' below for connection details). If the current BREIN product is called ABC and it is analyzed with a single bright eye station BE1, the database must contain a table named ABC_analysis_method which must have fields defined by the following sql-script:

 

USE [BREIN]

GO

/****** Objekt:  Table [dbo].[ABC_analysis_method]    Skriptdatum: 09/10/2010 14:43:58 ******/

SET ANSI_NULLS ON

GO

SET QUOTED_IDENTIFIER ON

GO

SET ANSI_PADDING ON

GO

CREATE TABLE [dbo].[ABC_analysis_method](

 [index] [int] NOT NULL,

 [description] [nvarchar](max) NULL,

 [BE1_code] [varbinary](max) NULL,

 [BE1_fit_parameters] [varbinary](max) NULL,

 [BE1_first_position] [varbinary](max) NULL,

 [BE1_other_position] [varbinary](max) NULL,

CONSTRAINT [PK_ABC_analysis_method] PRIMARY KEY CLUSTERED

(

 [index] ASC

)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]

) ON [PRIMARY]

 

GO

SET ANSI_PADDING OFF

 

If there are more bright eye stations the table must have more fields of type varbinary (these are so-called BLOB fields). Ask W.Theiss Hard- and Software for support if you want to generate proper database tables for BREIN methods.