Skip to content
Snippets Groups Projects
Commit a402197c authored by tpylak's avatar tpylak
Browse files

LMS-2166 hcs material summary: basic dto-s

SVN: 20703
parent 20859834
No related branches found
No related tags found
No related merge requests found
/*
* Copyright 2011 ETH Zuerich, CISD
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ch.systemsx.cisd.openbis.plugin.screening.shared.basic.dto;
import java.util.List;
import ch.systemsx.cisd.openbis.generic.shared.basic.dto.CodeAndLabel;
/**
* Aggregated feature vectors with its rankings in one experiment for all material.
*
* @author Tomasz Pylak
*/
public class ExperimentFeatureVectorSummary
{
private ExperimentReference experiment;
private List<MaterialFeatureVectorSummary> materialsSummary;
// has the same length as feature vectors in all material summaries
private List<CodeAndLabel> featureDescriptions;
public ExperimentFeatureVectorSummary(ExperimentReference experiment,
List<MaterialFeatureVectorSummary> materialsSummary,
List<CodeAndLabel> featureDescriptions)
{
this.experiment = experiment;
this.materialsSummary = materialsSummary;
this.featureDescriptions = featureDescriptions;
}
public ExperimentReference getExperiment()
{
return experiment;
}
public List<MaterialFeatureVectorSummary> getMaterialsSummary()
{
return materialsSummary;
}
public List<CodeAndLabel> getFeatureDescriptions()
{
return featureDescriptions;
}
}
\ No newline at end of file
/*
* Copyright 2011 ETH Zuerich, CISD
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ch.systemsx.cisd.openbis.plugin.screening.shared.basic.dto;
import ch.systemsx.cisd.openbis.generic.shared.basic.dto.Material;
/**
* Aggregated feature vector with its ranking in one experiment for one material.
*
* @author Tomasz Pylak
*/
public class MaterialFeatureVectorSummary
{
private Material material;
private float[] featueVectorSummary;
private int[] featueVectorRanks;
// GTW
@SuppressWarnings("unused")
private MaterialFeatureVectorSummary()
{
}
public MaterialFeatureVectorSummary(Material material, float[] featueVectorSummary,
int[] featueVectorRanks)
{
this.material = material;
this.featueVectorSummary = featueVectorSummary;
this.featueVectorRanks = featueVectorRanks;
}
public Material getMaterial()
{
return material;
}
public float[] getFeatueVectorSummary()
{
return featueVectorSummary;
}
public int[] getFeatueVectorRanks()
{
return featueVectorRanks;
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment