Salome HOME
[Verima] Missing giles
[modules/smesh.git] / src / Tools / Verima / Base / tableGroupeTailles.py
diff --git a/src/Tools/Verima/Base/tableGroupeTailles.py b/src/Tools/Verima/Base/tableGroupeTailles.py
new file mode 100644 (file)
index 0000000..6c2763c
--- /dev/null
@@ -0,0 +1,39 @@
+from PyQt4 import QtSql, QtCore
+from tableDeBase import TableDeBase
+
+class TableGroupeTailles (TableDeBase):
+      def __init__(self):
+          TableDeBase.__init__(self,"GroupeTailles")
+          self.setField(('Maillage','Version','Groupe','TailleMax','TailleMin','Quartile1','Mediane','Quartile3','Moyenne'))
+          self.setTypeField(('int','int','str','float','float','float','float','float','float'),('idMaillage','idVersion'))
+
+      def createSqlTable(self):
+          query=QtSql.QSqlQuery()
+
+          texteQuery ="create table GroupeTailles(idMaillage int, idVersion int, "
+          texteQuery+="Groupe varchar(40),TailleMax float, TailleMin float, "
+          texteQuery+="Q1 float, "
+          texteQuery+="Mediane float, "
+          texteQuery+="Q3 float, "
+          texteQuery+="Moyenne float, "
+          texteQuery+="foreign key (idMaillage) references Maillages(id)," 
+          texteQuery+="foreign key (idVersion) references Versions(id)," 
+          texteQuery+="foreign key (Groupe) references GroupesRef(nomGroupe),"
+          texteQuery+="primary key (idMaillage,idVersion,Groupe));"
+
+          print "Creation de TableGroupeTailles : " , query.exec_(texteQuery)
+
+      def getVal(self,idMaillage, idVersion, Groupe,  Entite):
+          query=QtSql.QSqlQuery()
+          texteQuery ='select '+ str(Entite) + ' from GroupeTailles where idMaillage='+str(idMaillage)
+          texteQuery+=' and  idVersion='+str(idVersion)
+          texteQuery+=" and Groupe='" + str(Groupe) +"';"
+          query.exec_(texteQuery)
+          nb=0
+          val=0                          # Valeur si l enregistrement n existe pas
+          while (query.next()) :
+              val=query.value(0).toFloat()[0]
+              nb=nb+1
+          if nb > 1 : print "Double valeur de Reference dans la table des tailles"
+          return val
+