From a402197cb49c1c7fb0bc309ad73d16e2e4a05f64 Mon Sep 17 00:00:00 2001
From: tpylak <tpylak>
Date: Thu, 7 Apr 2011 11:18:38 +0000
Subject: [PATCH] LMS-2166 hcs material summary: basic dto-s

SVN: 20703
---
 .../dto/ExperimentFeatureVectorSummary.java   | 61 ++++++++++++++++++
 .../dto/MaterialFeatureVectorSummary.java     | 62 +++++++++++++++++++
 2 files changed, 123 insertions(+)
 create mode 100644 screening/source/java/ch/systemsx/cisd/openbis/plugin/screening/shared/basic/dto/ExperimentFeatureVectorSummary.java
 create mode 100644 screening/source/java/ch/systemsx/cisd/openbis/plugin/screening/shared/basic/dto/MaterialFeatureVectorSummary.java

diff --git a/screening/source/java/ch/systemsx/cisd/openbis/plugin/screening/shared/basic/dto/ExperimentFeatureVectorSummary.java b/screening/source/java/ch/systemsx/cisd/openbis/plugin/screening/shared/basic/dto/ExperimentFeatureVectorSummary.java
new file mode 100644
index 00000000000..f3bfd0c770b
--- /dev/null
+++ b/screening/source/java/ch/systemsx/cisd/openbis/plugin/screening/shared/basic/dto/ExperimentFeatureVectorSummary.java
@@ -0,0 +1,61 @@
+/*
+ * 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
diff --git a/screening/source/java/ch/systemsx/cisd/openbis/plugin/screening/shared/basic/dto/MaterialFeatureVectorSummary.java b/screening/source/java/ch/systemsx/cisd/openbis/plugin/screening/shared/basic/dto/MaterialFeatureVectorSummary.java
new file mode 100644
index 00000000000..d0127671c3d
--- /dev/null
+++ b/screening/source/java/ch/systemsx/cisd/openbis/plugin/screening/shared/basic/dto/MaterialFeatureVectorSummary.java
@@ -0,0 +1,62 @@
+/*
+ * 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
-- 
GitLab