This file is indexed.

/usr/share/syrthes-gui/calcView.py is in syrthes-gui 4.3.0-dfsg1-2build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
# -*- coding: utf-8 -*-

from ui_Calculation_progress import Ui_Calculation_progress
from CpStatusTip import CpStatusTip # classe des messages de la barre de statut du suivis de calcul
from CpToolTip import CpToolTip # classe des infobulles du suivis de calcul
from CpWhatsThis import CpWhatsThis # classe des what's this du suivis de calcul
from syrthesIHMContext import syrthesIHMContext

#-------------------------------------------------------------------------------
# importation des bibliothèques standard
#-------------------------------------------------------------------------------

import os, sys, string, subprocess, shutil, time, datetime, filecmp, threading, re

#-------------------------------------------------------------------------------
# importation des bibliothèques IHM
#-------------------------------------------------------------------------------
from PyQt4 import QtCore, QtGui
from PyQt4.QtCore import *
from PyQt4.QtGui  import *
# numpy est utile pour cx_freeze en particulier sur ubuntu
import numpy
import PyQt4.Qt as Qt

try:
    if os.name=='nt':
        import _winreg
    import PyQt4.Qwt5 as Qwt
except:
    print "ATTENTION PROBLEME A L'IMPORTATION DE PYQWT OU _WINREG"
    

class Tracker(QObject):
    def __init__(self, parent):
        QObject.__init__(self,parent)
        parent.setMouseTracking(True)
        parent.installEventFilter(self)
        pass
    
    def eventFilter(self, _, event):
        if event.type() == QEvent.MouseMove:
            self.emit(SIGNAL("MouseMoveTracked"), event.pos())
        return False
    pass

class calcView(QMainWindow, Ui_Calculation_progress, CpStatusTip, CpToolTip, CpWhatsThis, object): 
# classe du suivis de calcul
    def __init__(self, Home_form_copy, Control_form_copy, Filename_form_copy, Output_2D_form_copy, Output_3D_form_copy, Running_options_form_copy, case_copy, lastDir_copy, runProcess_copy, parent=None): # fonction d'initialisation de la fenêtre de suivis de calcul
        # respecter l'ordre des appels
        QMainWindow.__init__(self)
        Ui_Calculation_progress.__init__(self)
        CpStatusTip.__init__(self)
        CpToolTip.__init__(self)
        CpWhatsThis.__init__(self)
        Ui_Calculation_progress.setupUi(self,self)

        self.Home_form_copy = Home_form_copy
        self.Control_form_copy = Control_form_copy
        self.Filename_form_copy = Filename_form_copy
        self.Output_2D_form_copy = Output_2D_form_copy
        self.Output_3D_form_copy = Output_3D_form_copy
        self.Running_options_form_copy = Running_options_form_copy
        self.case_copy = case_copy
        self.lastDir_copy = lastDir_copy
        self.runProcess_copy = runProcess_copy
        self.nline=0
        self.running=False
        self.step=-1
        self.substep=0
        self.history_names=[]
        self.surface_balance_names=[]
        self.volume_balance_names=[]
        self.updateCalcView()
        
    def updateCalcView(self):    
        # définir le style de QGroupBox
        path = syrthesIHMContext.getExeAbsDirPath()
        qssname = path + os.sep + "22x22" + os.sep + "stylesheet.qss"
        if os.access(qssname, os.F_OK) :
            qss = open(qssname, "r")
            qstr = ""
            for line in qss.readlines() :
                qstr += line
            self.centralwidget.setStyleSheet(qstr)

        self.dictProbe = {} # empty dictionnary. will be of format { "N": filename, ...}, value = "-1" if probe is not found in any files
        self.listColor = [Qt.Qt.green, Qt.Qt.red, Qt.Qt.blue, Qt.Qt.darkYellow, Qt.Qt.cyan, Qt.Qt.magenta, Qt.Qt.gray, Qt.Qt.darkGreen, Qt.Qt.darkRed, Qt.Qt.darkBlue, Qt.Qt.darkGray, Qt.Qt.darkCyan, Qt.Qt.darkMagenta, Qt.Qt.black, Qt.Qt.yellow]        
        nbcl = len(self.listColor)        
        for cl in range(nbcl) :
            self.listColor.append(self.listColor[cl])
        nbcl = len(self.listColor) 
        for cl in range(nbcl) :
            self.listColor.append(self.listColor[cl])
        nbcl = len(self.listColor) 
        for cl in range(nbcl) :
            self.listColor.append(self.listColor[cl]) 
        self.fn = self.fontInfo().family()
        self.iLastLineListing = -1
        self.tickflag=True
        
        ##########################################################################
        # Combobox - choix de sondes
        # curves - préparer les courbes vides pour chaque sonde
        self.__init_Cb_Tops()
        
        ##########################################################################
        # create Combobox - nature variable (température, pression...)        
        self.Cb_Vars = []
        self.Cb_Types = []
        self.Rb_ButtonGroups = []
        self.gridLayout_tabs = []
        self.gridLayout_tabs.append(self.gridLayout_tab1)
        self.gridLayout_tabs.append(self.gridLayout_tab2)
        self.gridLayout_tabs.append(self.gridLayout_tab3)
        self.gridLayout_tabs.append(self.gridLayout_tab4)

        for i in range(self.tabPlot.count()) :
            self.Cb_Types.append(QtGui.QComboBox(self.centralwidget))
            self.Cb_Vars.append(QtGui.QComboBox(self.centralwidget))
            sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Fixed)
            sizePolicy.setHorizontalStretch(0)
            sizePolicy.setVerticalStretch(0)
            sizePolicy.setHeightForWidth(self.Cb_Vars[i].sizePolicy().hasHeightForWidth())
            sizePolicy.setHeightForWidth(self.Cb_Types[i].sizePolicy().hasHeightForWidth())
            self.Cb_Types[i].setSizePolicy(sizePolicy)
            self.Cb_Types[i].setObjectName("Cb_Type_tab" + str(i+1))
            self.Cb_Types[i].addItem("History")
            self.Cb_Vars[i].setSizePolicy(sizePolicy)
            self.Cb_Vars[i].setObjectName("Cb_Var_tab" + str(i+1))
            ## if self.nbRefSURF != 0 : self.Cb_Vars[i].addItem("Surface balance:")
            ## if self.nbRefVOL != 0 : self.Cb_Vars[i].addItem("Volume balance:")
            if self.nbRefSURF != 0 : self.Cb_Types[i].addItem("Surface balance:")
            if self.nbRefVOL != 0 : self.Cb_Types[i].addItem("Volume balance:")
            self.gridLayout_tabs[i].addWidget(self.Cb_Types[i], 1, 1, 1, 1) # 2e ligne, 2e colonne, 1 span horizontal, 2 span vertical                     
            self.gridLayout_tabs[i].addWidget(self.Cb_Vars[i], 1, 2, 1, 1) # 2e ligne, 3e colonne, 1 span horizontal, 2 span vertical                     

            self.Rb_ButtonGroups.append(QtGui.QButtonGroup(self.centralwidget))
            yleft = QtGui.QRadioButton("yleft")
            hide = QtGui.QRadioButton("hide")
            yright = QtGui.QRadioButton("yright")
            horizontalLayout = QtGui.QHBoxLayout()
            horizontalLayout.setObjectName("horizontalLayout"+str(i+1))
            self.Rb_ButtonGroups[i].addButton(yleft,1)
            self.Rb_ButtonGroups[i].addButton(hide,2)
            self.Rb_ButtonGroups[i].addButton(yright,3)
            yleft.setChecked(True)

            horizontalLayout.addWidget(yleft)
            horizontalLayout.addWidget(hide)

            self.gridLayout_tabs[i].addLayout(horizontalLayout, 3, 1, 1, 1)
            self.gridLayout_tabs[i].addWidget(yright, 3, 2, 1, 1)
        ##########################################################################
        # create Combobox - line style
        self.ne_pas_repondre_style = False
        self.Cb_LineStyles = []
        self.Cb_LineStyles.append(self.cbStyle_tab1)
        self.Cb_LineStyles.append(self.cbStyle_tab2)
        self.Cb_LineStyles.append(self.cbStyle_tab3)
        self.Cb_LineStyles.append(self.cbStyle_tab4)
        
        for i in range(self.tabPlot.count()) :
            # line style
            self.Cb_LineStyles[i].setIconSize(QtCore.QSize(52,12))
            
            # "———————"
            #self.Cb_LineStyles[i].addItem(chr(151) + chr(151) + chr(151) + chr(150) + chr(150))
            iconpath = syrthesIHMContext.getExeAbsDirPath() + os.sep + "22x22" + os.sep + "dash52x12.png"
            icon = QIcon(iconpath)
            self.Cb_LineStyles[i].addItem("")            
            self.Cb_LineStyles[i].setItemIcon(0, icon)
            
            # "— — — — — — —"            
            #self.Cb_LineStyles[i].addItem(chr(150) + ' ' + chr(150) + ' ' + chr(150) + ' ' + chr(150) + ' ' + chr(150))
            iconpath = syrthesIHMContext.getExeAbsDirPath() + os.sep + "22x22" + os.sep + "dashespace52x12.png"
            icon = QIcon(iconpath)
            self.Cb_LineStyles[i].addItem("") 
            self.Cb_LineStyles[i].setItemIcon(1, icon)
            
            # "•••••••••"
            #self.Cb_LineStyles[i].addItem(chr(149) + chr(149) + chr(149) + chr(149) + chr(149) + chr(149) + chr(149) + chr(149) + chr(149) + chr(149))
            iconpath = syrthesIHMContext.getExeAbsDirPath() + os.sep + "22x22" + os.sep + "dot52x12.png"
            icon = QIcon(iconpath)
            self.Cb_LineStyles[i].addItem("") 
            self.Cb_LineStyles[i].setItemIcon(2, icon)
            
            # "— • — • — • —"
            #self.Cb_LineStyles[i].addItem(chr(150) + ' ' + chr(183) + ' ' + chr(150) + ' ' + chr(183) + ' ' + chr(150)) 
            iconpath = syrthesIHMContext.getExeAbsDirPath() + os.sep + "22x22" + os.sep + "dashdot52x12.png"
            icon = QIcon(iconpath)
            self.Cb_LineStyles[i].addItem("") 
            self.Cb_LineStyles[i].setItemIcon(3, icon)
        
        ###########################################################################
        # plot
        self.xposold=None
        self.yposold=None
        self.mark=False
        
        self.plot = Qwt.QwtPlot()
        self.plot.setObjectName("plot") 
        self.verticalLayout.addWidget(self.plot)
        self.plot.setCanvasBackground(Qt.Qt.white)
        self.plot.plotLayout().setCanvasMargin(0)
        self.plot.plotLayout().setAlignCanvasToScales(False) 
        
        # init titre des axes du plot
        text = Qwt.QwtText(u'Temperature (°C)')
        text.setFont(QFont(self.fn, 8, QFont.Normal))
        self.plot.setAxisTitle(Qwt.QwtPlot.yLeft, text)

        btext = Qwt.QwtText('Time (s)')
        btext.setFont(QFont(self.fn, 8, QFont.Normal))
        self.plot.setAxisTitle(Qwt.QwtPlot.xBottom, btext)
        
        # titre du graphique n'est plus nécessaire car on a des légendes
        # init titre du plot - dépendant du 1ère sonde
        #if self.Home_form_copy.Dim_Comb.currentIndex()==0:
        #    table=self.Output_2D_form_copy.Op_Dc_3D_table
        #    x = table.item(0,1).text()
        #    y = table.item(0,2).text()
        #    z = table.item(0,3).text()
        #    ttext = Qwt.QwtText(self.Cb_Vars[0].currentText()+' ['+x+';'+y+';'+z+']')
        #    ttext.setFont(QFont(self.fn, 8, QFont.Normal))
        #    self.plot.setTitle(ttext)
        #else:
        #    table=self.Output_2D_form_copy.Le2_2D_Op
        #    x = table.item(0,1).text()
        #    y = table.item(0,2).text()
        #    ttext = Qwt.QwtText(self.Cb_Vars[0].currentText()+' ['+x+';'+y+']')
        #    ttext.setFont(QFont(self.fn, 8, QFont.Normal))
        #    self.plot.setTitle(ttext)
            
        ###########################################################################
        # grid
        grid = Qwt.QwtPlotGrid()
        pen = Qt.QPen(Qt.Qt.DotLine)
        pen.setColor(Qt.Qt.black)
        pen.setWidth(0)
        grid.setPen(pen)
        grid.attach(self.plot)                  
            
        ###########################################################################
        # check availability of data
            
        self.marker=Qwt.QwtPlotMarker()
        self.marker.setValue(500, 500)
        text=Qwt.QwtText('Awaiting data')
        self.marker.setLabel(text)
        if not os.access(self.case_copy.getHisFullPath(0), os.F_OK): 
            self.marker.attach(self.plot)
            self.mark=True
        
        # enregistrer les coordonnées de la sonde dans l'objet curves[j]                
        # curves - préparer les courbes vides pour chaque sonde
        self.curves = {}

        if self.nbProbes > 0 :
            self.Cb_Tops[0].setCurrentIndex(0)
        ###########################################################################
        # déterminer le nombre de réf bilan surfacique/volumique
        
        ###########################################################################
        # réaffacter tabPlot à la classe fille (clPlotTab) pour plus de fonctionnalité !
        #self.tabPlot = clPlotTab(self.tabPlot)
        #print "tab2 :",self.tabPlot
        #print "tabtab :",self.tabPlot
        self.tabPlot.initView()
        
        ###########################################################################
        # signaux - slot
        self.connect(self.Cb_Top, SIGNAL("currentIndexChanged(int)"), self.Cb_Top_Clb2)
        self.connect(self.Cb_Top2, SIGNAL("currentIndexChanged(int)"), self.Cb_Top_Clb2)
        self.connect(self.Cb_Top3, SIGNAL("currentIndexChanged(int)"), self.Cb_Top_Clb2)
        self.connect(self.Cb_Top4, SIGNAL("currentIndexChanged(int)"), self.Cb_Top_Clb2)
        
        self.connect(self.Cb_Vars[0], SIGNAL("currentIndexChanged(int)"), self.Cb_Var_Clb)
        self.connect(self.Cb_Vars[1], SIGNAL("currentIndexChanged(int)"), self.Cb_Var_Clb)
        self.connect(self.Cb_Vars[2], SIGNAL("currentIndexChanged(int)"), self.Cb_Var_Clb)
        self.connect(self.Cb_Vars[3], SIGNAL("currentIndexChanged(int)"), self.Cb_Var_Clb)

        self.connect(self.Cb_Types[0], SIGNAL("currentIndexChanged(int)"), self.Cb_Type_Clb)
        self.connect(self.Cb_Types[1], SIGNAL("currentIndexChanged(int)"), self.Cb_Type_Clb)
        self.connect(self.Cb_Types[2], SIGNAL("currentIndexChanged(int)"), self.Cb_Type_Clb)
        self.connect(self.Cb_Types[3], SIGNAL("currentIndexChanged(int)"), self.Cb_Type_Clb)
        
        self.connect(self.cbStyle_tab1, SIGNAL("currentIndexChanged(int)"), self.Cb_Style_Clb)
        self.connect(self.cbStyle_tab2, SIGNAL("currentIndexChanged(int)"), self.Cb_Style_Clb)
        self.connect(self.cbStyle_tab3, SIGNAL("currentIndexChanged(int)"), self.Cb_Style_Clb)
        self.connect(self.cbStyle_tab4, SIGNAL("currentIndexChanged(int)"), self.Cb_Style_Clb)

        self.connect(self.Rb_ButtonGroups[0], SIGNAL("buttonClicked(int)"), self.Rb_ButtonGroup_Clb)
        self.connect(self.Rb_ButtonGroups[1], SIGNAL("buttonClicked(int)"), self.Rb_ButtonGroup_Clb)
        self.connect(self.Rb_ButtonGroups[2], SIGNAL("buttonClicked(int)"), self.Rb_ButtonGroup_Clb)
        self.connect(self.Rb_ButtonGroups[3], SIGNAL("buttonClicked(int)"), self.Rb_ButtonGroup_Clb)

        self.connect(self.Screenshot_pb, SIGNAL("clicked()"), self.Screenshot)
        self.connect(self.Gnuplot_pb, SIGNAL("clicked()"), self.Gnuplot)
        self.connect(self.btnResetScale, SIGNAL("clicked()"), self.ResetScale) # reset scale in calculation progress
        self.connect(self.tabWidget, SIGNAL("currentChanged(int)"), self.RefreshListing)
        self.connect(Tracker(self.plot.canvas()), SIGNAL("MouseMoveTracked"), self.showCoordinates)
        
        self.widget=[self.progressBar, 
                     self.Cb_Top,
                     self.btnResetScale,
                     self.textBrowser_3, 
                     self.textEdit_2,
                     self.Screenshot_pb,
                     self.Gnuplot_pb,
                     self.plot,
                     self.Cb_Vars[0],
                     self.Cb_Vars[1],
                     self.Cb_Vars[2],
                     self.Cb_Vars[3],
                     self.Cb_Types[0],
                     self.Cb_Types[1],
                     self.Cb_Types[2],
                     self.Cb_Types[3],
                     self.Rb_ButtonGroups[0].button(1),
                     self.Rb_ButtonGroups[0].button(2),
                     self.Rb_ButtonGroups[0].button(3),
                     self.Rb_ButtonGroups[1].button(1),
                     self.Rb_ButtonGroups[1].button(2),
                     self.Rb_ButtonGroups[1].button(3),
                     self.Rb_ButtonGroups[2].button(1),
                     self.Rb_ButtonGroups[2].button(2),
                     self.Rb_ButtonGroups[2].button(3),
                     self.Rb_ButtonGroups[3].button(1),
                     self.Rb_ButtonGroups[3].button(2),
                     self.Rb_ButtonGroups[3].button(3),
                     self.cbStyle_tab1,
                     self.cbStyle_tab2,
                     self.cbStyle_tab3,
                     self.cbStyle_tab4,
                     self.Cb_Top2,
                     self.Cb_Top3,
                     self.Cb_Top4]
    
        self.CpStatusTip()
        self.CpToolTip()
        self.CpWhatsThis()
      
        ###########################################################################
        # coups d'horloge pour le rafraîchissement de l'IHM du suivis de calcul
        self.timer= QtCore.QTimer()
        ticker=self.timer.singleShot(1000, self.Time_Clb)
      
        ###########################################################################
        # zoom
        self.plot.wheelEvent=self.wheel_event
        self.plot.mouseMoveEvent=self.grab_mouse
        self.plot.mouseReleaseEvent=self.raz_mouses
        self.Mag=Qwt.QwtPlotMagnifier(self.plot.canvas())
        
        self.plot.insertLegend(Qwt.QwtLegend(), Qwt.QwtPlot.BottomLegend)
        
        self.__initZooming()
        
        #panner = Qwt.QwtPlotPanner(self.plot.canvas())
        #panner.setAxisEnabled(Qwt.QwtPlot.)

    def __init_Cb_Tops(self):
        # Combobox - choix de sondes
        self.Cb_Top.setEnabled(True)
        self.Cb_Tops = []
        self.Cb_Tops.append(self.Cb_Top)
        self.Cb_Tops.append(self.Cb_Top2)
        self.Cb_Tops.append(self.Cb_Top3)
        self.Cb_Tops.append(self.Cb_Top4)
        
        if self.Home_form_copy.Dim_Comb.currentIndex()==0:
            Table = self.Output_3D_form_copy.Op_Dc_3D_table
            TableSURF = self.Output_3D_form_copy.Op_Sb_3D_table
            TableVOL = self.Output_3D_form_copy.Op_Vb_3D_table
        else:
            Table=self.Output_2D_form_copy.Op_Dc_2D_table
            TableSURF = self.Output_2D_form_copy.Op_Sb_2D_table
            TableVOL = self.Output_2D_form_copy.Op_Vb_2D_table
        
        # remplir les Cb_Top - bug potentiel : hasn't checked Table.item(i, 4)!=None yet
        # other possible bugs : i, j, ...
        
        pixmap = QPixmap(10,10) # mod GA 2011 (10,10) inside of 30*30
        for Cb_Top in self.Cb_Tops :            
            i = 0 # ligne non vide dans le tableau output
            j = 0 # numéro de courbe dans le combobox - devra-t-il correspondre au numéro de ligne dans le tableau ?
            while i<Table.rowCount():
                if ((Table.cellWidget(i, 0).isChecked()==True) and
                    (Table.item(i, 1)!=None and Table.item(i, 2)!=None)): # ligne checké et non vide
                    if Table.item(i, 1).text() != "" and Table.item(i,2).text() != "" :
                        if Cb_Top.findText(str(i+1))==-1:
                            Cb_Top.insertItem(j, str(i+1))
                            
                            # créer un carré de couleur self.listColor[j]
                            pixmap.fill(QtGui.QColor(self.listColor[i])); 
                            Cb_Top.setItemData(j, QtCore.QVariant(pixmap), Qt.Qt.DecorationRole)
                            
                            pass # end if not yet listed in Cb_top
                        j=j+1                                                       
                i=i+1 # end while
            
            Cb_Top.addItem("None")
            Cb_Top.setCurrentIndex(-1) # combobox vide au départ
            
        # sauvegarder le nombre de sondes pour utiliser plus tard    
        self.nbProbes = self.Cb_Tops[0].count() - 1
        self.probesList = [self.Cb_Tops[0].itemText(i).toInt()[0] - 1 for i in range(self.Cb_Tops[0].count() - 1)]
        # déterminer le nombre de réf Bilan SURF pour utiliser plus tard
        i = 0 # ligne non vide dans le tableau output
        j = 0 # numéro de courbe dans le combobox - devra-t-il correspondre au numéro de ligne dans le tableau ?
        while i<TableSURF.rowCount():
            if TableSURF.cellWidget(i, 0).isChecked() and (TableSURF.item(i, 1)!=None): # ligne checké et non vide
                if TableSURF.item(i, 1).text() != "" :
                    j=j+1                                                       
            i=i+1 # end while
        self.nbRefSURF = j
        
        # déterminer le nombre de réf Bilan VOL pour utiliser plus tard
        i = 0 # ligne non vide dans le tableau output
        j = 0 # numéro de courbe dans le combobox - devra-t-il correspondre au numéro de ligne dans le tableau ?
        while i<TableVOL.rowCount():
            if TableVOL.cellWidget(i, 0).isChecked() and (TableVOL.item(i, 1)!=None): # ligne checké et non vide
                if TableVOL.item(i, 1).text() != "" :
                    j=j+1                                                       
            i=i+1 # end while
        self.nbRefVOL = j
        print j
        
    def __initZooming(self):
#        self.zoomer = Qwt.QwtPlotZoomer(Qwt.QwtPlot.xBottom,
#                                        Qwt.QwtPlot.yLeft,
#                                        Qwt.QwtPicker.DragSelection,
#                                        Qwt.QwtPicker.AlwaysOff,
#                                        self.plot.canvas())
#        self.zoomer.setRubberBandPen(Qt.QPen(Qt.Qt.black))
#        zoomer = Qwt.QwtPlotZoomer(self.plot.canvas())
#        zoomer.setMousePattern(Qwt.QwtEventPattern.MouseSelect2, Qt.Qt.RightButton, Qt.Qt.ControlModifier)
#        zoomer.setMousePattern(Qwt.QwtEventPattern.MouseSelect3, Qt.Qt.RightButton)
#        zoomer.setRubberBandPen(Qt.QPen(Qt.Qt.black))
 
        # zooming
        self.zoomers = []
        zoomer = Qwt.QwtPlotZoomer(Qwt.QwtPlot.xBottom,
                               Qwt.QwtPlot.yLeft,
                               Qwt.QwtPicker.DragSelection,
                               Qwt.QwtPicker.AlwaysOff,
                               self.plot.canvas())
        zoomer.setRubberBandPen(Qt.QPen(Qt.Qt.black))
        self.zoomers.append(zoomer)
        zoomer = Qwt.QwtPlotZoomer(Qwt.QwtPlot.xTop,
                                   Qwt.QwtPlot.yRight,
                                   Qwt.QwtPicker.DragSelection,
                                   Qwt.QwtPicker.AlwaysOff,
                                   self.plot.canvas())
        zoomer.setRubberBand(Qwt.QwtPicker.NoRubberBand)
        self.zoomers.append(zoomer)
        self.setZoomerMouseEventSet(0)

    def setZoomerMouseEventSet(self, index):
        """Attach the Qwt.QwtPlotZoomer actions to a set of mouse events.
        """
        if index == 0:
            pattern = [
                Qwt.QwtEventPattern.MousePattern(Qt.Qt.LeftButton,
                                             Qt.Qt.NoModifier),
                #Qwt.QwtEventPattern.MousePattern(Qt.Qt.MidButton,
                #                             Qt.Qt.NoModifier),
                #Qwt.QwtEventPattern.MousePattern(Qt.Qt.RightButton,
                #                             Qt.Qt.NoModifier),
                Qwt.QwtEventPattern.MousePattern(Qt.Qt.LeftButton,
                                             Qt.Qt.ShiftModifier),
                #Qwt.QwtEventPattern.MousePattern(Qt.Qt.MidButton,
                #                             Qt.Qt.ShiftModifier),
                #Qwt.QwtEventPattern.MousePattern(Qt.Qt.RightButton,
                #                             Qt.Qt.ShiftModifier),
                ]
            for zoomer in self.zoomers:
                zoomer.setMousePattern(pattern)
        elif index in (1, 2, 3):
            for zoomer in self.zoomers:
                zoomer.initMousePattern(index)
        else:
            raise ValueError, 'index must be in (0, 1, 2, 3)'
        #self.__mouseEventSet = index

    def showCoordinates(self, position):
        result=[]
        
        yAxisTitle = "%s"%(self.plot.axisTitle(Qwt.QwtPlot.yLeft).text().toUtf8())

        #yunit='°C'
        #ylabel='T'
        #xunit="s"
        #xlabel='t'

        yunit=''
        ylabel='y'
        yrunit=''
        yrlabel='yr'
        xunit=''
        xlabel='x'

        if yAxisTitle.find("°C") != -1:
            ylabel='T'
            yunit='°C'
        elif yAxisTitle.find("Pa") != -1:
            ylabel='P'
            yunit="Pa"
        elif yAxisTitle.find("W") !=-1:
            ylabel='P'
            yunit="W"

        raw = ( (Qwt.QwtPlot.xBottom, "%s=%.6g %s", (xlabel, position.x(), xunit)), 
                (Qwt.QwtPlot.yLeft, "%s=%.6g %s", (ylabel, position.y(), yunit)),
                (Qwt.QwtPlot.yRight, "%s=%.6g %s", (yrlabel, position.y(), yrunit)) )
        for axis, template, value in raw:
            if self.plot.axisEnabled(axis):
                value = (value[0],self.plot.invTransform(axis, value[1]),value[2])
                result.append(template % value)

        if self.plot.axisEnabled(Qwt.QwtPlot.yRight):
            self.plot.setToolTip(QtGui.QApplication.translate("MainWindow", '[ '+result[0] +' , ' +result[1]+' , ' +result[2]+' ]', None, QtGui.QApplication.UnicodeUTF8))
        else:
            self.plot.setToolTip(QtGui.QApplication.translate("MainWindow", '[ '+result[0] +' , ' +result[1]+' ]', None, QtGui.QApplication.UnicodeUTF8))
        pass
   
    def updateCb_Top(self, tabIndex): # fonction de rappel lorsque le combobox type de variable est changé
        if self.Cb_Types[tabIndex].currentText() == "Surface balance:" :
            if self.Home_form_copy.Dim_Comb.currentIndex()==0:
                Table = self.Output_3D_form_copy.Op_Sb_3D_table
            else:
                Table = self.Output_2D_form_copy.Op_Sb_2D_table
            
        elif self.Cb_Types[tabIndex].currentText() == "Volume balance:" :
            if self.Home_form_copy.Dim_Comb.currentIndex()==0:
                Table = self.Output_3D_form_copy.Op_Vb_3D_table
            else:
                Table = self.Output_2D_form_copy.Op_Vb_2D_table
        else:
            if self.Home_form_copy.Dim_Comb.currentIndex()==0:
                Table = self.Output_3D_form_copy.Op_Dc_3D_table
            else:
                Table = self.Output_2D_form_copy.Op_Dc_2D_table
        
        i = 0 # ligne non vide dans le tableau output
        j = 0 # numéro de courbe dans le combobox - devra-t-il correspondre au numéro de ligne dans le tableau ?
        Cb_Top = self.Cb_Tops[tabIndex]
        while Cb_Top.count() > 0 : Cb_Top.removeItem(0) # clear combobox
        pixmap = QPixmap(10,10) # mod GA 2011 (10,10) inside of 30*30
        while i<Table.rowCount():
            if ((Table.cellWidget(i, 0).isChecked()==True) and
                (Table.item(i, 1)!=None)): # ligne checké et non vide
                if Table.item(i,1).text() != "" :
                    if Cb_Top.findText(str(i+1))==-1:
                        Cb_Top.insertItem(j, str(i+1))
                        
                        # créer un carré de couleur self.listColor[j]
                        pixmap.fill(QtGui.QColor(self.listColor[i])); 
                        Cb_Top.setItemData(j, QtCore.QVariant(pixmap), Qt.Qt.DecorationRole)
                        
                        pass # end if not yet listed in Cb_top
                    j=j+1                                                       
            i=i+1 # end while
        Cb_Top.addItem("None")
        Cb_Top.setCurrentIndex(Cb_Top.findText("None")) # combobox vide au départ

    def updateCb_Var(self, tabIndex):
        if self.Cb_Types[tabIndex].currentText() == "Surface balance:":
            self.Cb_Vars[tabIndex].clear()
            self.Cb_Vars[tabIndex].addItems(self.surface_balance_names)
        elif self.Cb_Types[tabIndex].currentText() == "Volume balance:":
            self.Cb_Vars[tabIndex].clear()
            self.Cb_Vars[tabIndex].addItems(self.volume_balance_names)
        else:
            self.Cb_Vars[tabIndex].clear()
            self.Cb_Vars[tabIndex].addItems(self.history_names)
        
    def updateCb_Vars(self):
        # create Combobox - nature variable (température, pression...)        
        for i in range(self.tabPlot.count()):
            if self.Cb_Types[i].currentText() == "Surface balance:":
                self.Cb_Vars[i].clear()
                self.Cb_Vars[i].addItems(self.surface_balance_names)
                self.Cb_Vars[i].setCurrentIndex(0)
            elif self.Cb_Types[i].currentText() == "Volume balance:":
                self.Cb_Vars[i].clear()
                self.Cb_Vars[i].addItems(self.volume_balance_names)
                self.Cb_Vars[i].setCurrentIndex(0)
            else:
                self.Cb_Vars[i].clear()
                self.Cb_Vars[i].addItems(self.history_names)
                self.Cb_Vars[i].setCurrentIndex(0)


    def addHistoryCurves(self):
        if self.Home_form_copy.Dim_Comb.currentIndex()==0:
            Table = self.Output_3D_form_copy.Op_Dc_3D_table
            TableSURF = self.Output_3D_form_copy.Op_Sb_3D_table
            TableVOL = self.Output_3D_form_copy.Op_Vb_3D_table
        else:
            Table=self.Output_2D_form_copy.Op_Dc_2D_table
            TableSURF = self.Output_2D_form_copy.Op_Sb_2D_table
            TableVOL = self.Output_2D_form_copy.Op_Vb_2D_table

        j = 0 # nombre de courbes existantes
        for name in self.history_names:
            i = 0 # numéro de ligne-1 dans le tableau output
            while i<Table.rowCount():
                if ((Table.cellWidget(i, 0).isChecked()==True) and
                    (Table.item(i, 1)!=None and Table.item(i, 2)!=None)): # ligne checké et non vide
                    if Table.item(i, 1).text() != "" and Table.item(i,2).text() != "" :
                        legend = name+" "
                        if self.Home_form_copy.Dim_Comb.currentIndex()==0: # 3D                        
                            try :
                                legend = legend + Table.item(i,4).text() # par défaut légende = user commentaire du sonde
                            except :
                                pass
                            if legend == name+" " : # sinon légende = coordonnées du sonde
                                legend = legend + "["+str(Table.item(i,1).text())+";"+str(Table.item(i,2).text())+";"+str(Table.item(i,3).text())+"]"
                        else:                        
                            try :
                                legend = legend + Table.item(i,3).text()
                            except :
                                pass
                            if legend == name+" " :
                                legend = legend + "["+str(Table.item(i,1).text())+";"+str(Table.item(i,2).text())+"]"
                        curve = clCurve(legend)
                        # self.curves.append(curve)
                        self.curves[0,j] = curve
                        self.curves[0,j].setColor(self.listColor[i])
                        self.curves[0,j].x = Table.item(i,1).text()
                        self.curves[0,j].y = Table.item(i,2).text()
                        if self.Home_form_copy.Dim_Comb.currentIndex()==0:
                            self.curves[0,j].z = Table.item(i,3).text()
                            self.curves[0,j].dimension = 3
                        else:
                            self.curves[0,j].z = '999'
                            self.curves[0,j].dimension = 2
                        j=j+1
                        pass # end if
                i=i+1 # end while
        print "nbCurves:", len(self.curves)    
        pass

    def addSurfaceCurves(self):
        if self.Home_form_copy.Dim_Comb.currentIndex()==0:
            Table = self.Output_3D_form_copy.Op_Dc_3D_table
            TableSURF = self.Output_3D_form_copy.Op_Sb_3D_table
            TableVOL = self.Output_3D_form_copy.Op_Vb_3D_table
        else:
            Table=self.Output_2D_form_copy.Op_Dc_2D_table
            TableSURF = self.Output_2D_form_copy.Op_Sb_2D_table
            TableVOL = self.Output_2D_form_copy.Op_Vb_2D_table


        # curves for surface balance -> ...
        j = 0
        # j = len(self.history_names)*self.nbProbes # nombre de courbes existantes
        for name in self.surface_balance_names:
            i = 0 # numéro de ligne-1 dans le tableau Surface balance
            while i<TableSURF.rowCount():
                if (TableSURF.cellWidget(i, 0).isChecked()==True) and (TableSURF.item(i, 1)!=None): # ligne checké et non vide
                    if TableSURF.item(i, 1).text() != "" :
                        legend = ""
                        try :
                            legend = TableSURF.item(i,2).text() # par défaut légende = user commentaire du sonde
                        except :
                            pass
                        if legend == "" : # sinon légende = coordonnées du sonde
                            legend = name + " " + str(TableSURF.item(i, 1).text())
                    
                        curve = clCurve(legend)
                        # self.curves.append(curve)
                        self.curves[1,j] = curve
                        self.curves[1,j].setColor(self.listColor[i])
                        self.curves[1,j].x = TableSURF.item(i,1).text()
                        self.curves[1,j].y = '999'
                        self.curves[1,j].z = '999'
                        j=j+1
                        pass # end if
                i=i+1 # end while
        print "nbCurves:", len(self.curves)    
        pass

    def addVolumeCurves(self):
        if self.Home_form_copy.Dim_Comb.currentIndex()==0:
            Table = self.Output_3D_form_copy.Op_Dc_3D_table
            TableSURF = self.Output_3D_form_copy.Op_Sb_3D_table
            TableVOL = self.Output_3D_form_copy.Op_Vb_3D_table
        else:
            Table=self.Output_2D_form_copy.Op_Dc_2D_table
            TableSURF = self.Output_2D_form_copy.Op_Sb_2D_table
            TableVOL = self.Output_2D_form_copy.Op_Vb_2D_table

        # curves for volume balance -> ...
        j = 0
        # j = len(self.history_names)*self.nbProbes + len(self.surface_balance_names)*self.nbRefSURF# nombre de courbes existantes
        # j - nombre de courbes existantes
        for name in self.volume_balance_names:
            i = 0 # numéro de ligne-1 dans le tableau Volume balance
            while i<TableVOL.rowCount():
                if (TableVOL.cellWidget(i, 0).isChecked()==True) and (TableVOL.item(i, 1)!=None): # ligne checké et non vide
                    if TableVOL.item(i, 1).text() != "" :
                        legend = ""
                        try :
                            legend = TableVOL.item(i,2).text() # par défaut légende = user commentaire du sonde
                        except :
                            pass
                        if legend == "" : # sinon légende = coordonnées du sonde
                            legend = name + " " + str(TableVOL.item(i, 1).text())
                            
                        curve = clCurve(legend)
                        # self.curves.append(curve)
                        self.curves[2,j] = curve
                        self.curves[2,j].setColor(self.listColor[i])
                        self.curves[2,j].x = TableVOL.item(i,1).text()
                        self.curves[2,j].y = '999'
                        self.curves[2,j].z = '999'
                        j=j+1
                        pass # end if
                i=i+1 # end while
        print "nbCurves:", len(self.curves)    
        pass
    
    def Time_Clb(self, parent=None): # Fonction de rappel des coups d'horloge pour le rafraîchissement de l'IHM du suivis de calcul
        self.setCursor(QtCore.Qt.BusyCursor)
        for i in range(4) :
            Cb_Top = self.Cb_Tops[i]
            if Cb_Top.currentText() != '':
                #self.read_cp_file2(self.tabPlot.curveIndexLinked[i])
                #self.read_cp_SURF(self.tabPlot.curveIndexLinked[i])
                #self.read_cp_VOL(self.tabPlot.curveIndexLinked[i])
                if self.Cb_Types[i].currentText() == "Surface balance:":
                    self.read_cp_SURF(self.tabPlot.curveIndexLinked[i])
                elif self.Cb_Types[i].currentText() == "Volume balance:":
                    self.read_cp_VOL(self.tabPlot.curveIndexLinked[i])
                else:
                    self.read_cp_file2(self.tabPlot.curveIndexLinked[i])
            pass
        self.plot.replot()
        self.timer= QtCore.QTimer()
        
        # afficher listing dans les onglets
        listing = self.case_copy.dirPath + os.sep + str(self.Running_options_form_copy.Ro_Ln_le.text())
        #if (not os.access(listing, os.F_OK)) or (not os.access(self.case_copy.getHisFullPath(0), os.F_OK)):
        #if (not os.access(listing, os.F_OK)) and (not os.access(self.case_copy.getHisFullPath(0), os.F_OK)) or (not os.access(listing, os.F_OK)):
        if (not os.access(listing, os.F_OK)):
            #print '1 self.tickflag : ',self.tickflag
            # listing or file .his n'existe pas ou n'est pas créé
            # Mais on ne fait self.tickflag = False qu'après avoir vérifié self.runProcess_copy.poll()
            # pour éviter le cas où ces fichiers sont en train d'être créé
            
            try:                        
                # while the process has not terminated yet -> wait
                if self.runProcess_copy.poll() == None : 
                    ticker=self.timer.singleShot(500, self.Time_Clb)
                    return
                                    
                # if the process has terminated
                if self.runProcess_copy.poll() != None : 
                    self.tickflag = False # stop IHM from iterating   
                    #Main.Syrthes_stopping()
                    print "Syrthes_stopping : process terminated"
                    #self.ResetScale()
                    self.emit(SIGNAL("Syrthes_stopping"))
                    #restore cursor
                    self.unsetCursor()
                # printing Error Message
                self.afficherStdout()
                self.afficherStderr()
                
            except:
                print "Warning : SYRTHES hasn't run yet"
                self.tickflag = False
                #Main.Syrthes_stopping()
                self.emit(SIGNAL("Syrthes_stopping"))
                #restore cursor
                self.unsetCursor()
            
        else:
            #print '2 self.tickflag : ',self.tickflag
            listfile=open(self.case_copy.dirPath + os.sep + str(self.Running_options_form_copy.Ro_Ln_le.text()), "r")
            lines=listfile.readlines()
            length=len(lines)
            textlines=''
            
            self.textBrowser_3.clear()
            #monospace
            myCharFormat = QtGui.QTextCharFormat()    
            myCharFormat.setFontFixedPitch(True)
            self.textBrowser_3.setCurrentCharFormat(myCharFormat)
            
            i=0
            Tstep=-1
            count=length-self.nline
            #step=-1
            #substep=0
            for line in lines:
                #print '****************************************'
                #print line
                #print '****************************************'
                #self.textBrowser_3.insertPlainText(line)
                if i>=len(lines)-200:
                    self.textBrowser_3.insertPlainText(line)
                
                # trouver 'cpu time' --> fin de simulation ou bouton Stop actionné
                if line.find('cpu time=') != -1:
                    #print "progress =", int((Tstep/float(self.Control_form_copy.Le_Nts.text()))*100)
                    self.tickflag=False
                    
                    # wait until the process really terminates
                    if self.runProcess_copy != None :
                        if self.runProcess_copy.poll() == None :
                            listfile.close()
                            ticker=self.timer.singleShot(500, self.Time_Clb)                        
                            return
                        
                        # print SYRTHES message
                        """self.textBrowser_4.clear()                    
                        myCharFormat = QtGui.QTextCharFormat()    
                        myCharFormat.setFontFixedPitch(True) #monospace
                        self.textBrowser_4.setCurrentCharFormat(myCharFormat) """
                        #namefout = self.case_copy.dirPath + os.sep + "stdout.txt"
                        #if os.access(namefout, os.F_OK) :
                        #    fout = open(namefout, "r+")
                        #    foutlines = fout.readlines()
                        #    for sline in foutlines :
                        #        if '\n' in sline :
                        #            print sline.split('\n')[0] # \n has not to be printed
                        #        else:
                        #            print sline
                        #        """self.textBrowser_4.insertPlainText(unicode(sline,"utf-8"))"""
                        #    if os.access(namefout, os.F_OK) :
                        #        fout.close()
                        # Modification BERTIN 23/05/2014 remplacement par l'appel des methodes :
                        self.afficherStdout()
                        self.afficherStderr()
                        #Main.Syrthes_stopping()
                        print "Syrthes_stopping : syrthes message"
                        #self.ResetScale()
                        self.emit(SIGNAL("Syrthes_stopping"))
                        #restore cursor
                        self.unsetCursor()
                if line.find('NTSYR=') != -1:
                    Tstep=line.split()
                    Tstep=float(Tstep[2])

                if i >= self.nline and not self.running :
                    if line.find("PRE-PROCESSOR  FOR  PARALLEL  COMPUTATION") != -1 or line.find("PRE-PROCESSEUR  POUR  TRAITEMENT  PARALLELE") != -1:
                        self.substep = 0
                        self.groupBox.setTitle(QtGui.QApplication.translate("Calculation_progress", "Pre processing", None, QtGui.QApplication.UnicodeUTF8))
                        self.step = 9
                        pass
                    if line.find(" CONDUCTION INITIALIZATIONS") != -1 or line.find(" INITIALISATIONS POUR LA CONDUCTION") != -1:
                        self.substep = 0
                        self.groupBox.setTitle(QtGui.QApplication.translate("Calculation_progress", "Conduction initialization", None, QtGui.QApplication.UnicodeUTF8))
                        self.step = 14
                        pass
                    if line.find("END OF PRE-PROCESSOR FOR PARALLEL COMPUTATION") != -1 or line.find("FIN NORMALE DU PRE-PROCESSING PARALLELE") != -1:
                        pass
                    if line.find(" RADIATION INITIALIZATIONS") != -1 or line.find("INITIALISATIONS POUR LE RAYONNEMENT") != -1:
                        self.substep = 0
                        self.groupBox.setTitle(QtGui.QApplication.translate("Calculation_progress", "Radiation initialization", None, QtGui.QApplication.UnicodeUTF8))
                        self.step = 13
                        pass
                    if line.find(" END OF INITIALIZATION PHASE") != -1 or line.find(" FIN DE LA PHASE D'INITIALISATION") != -1:
                        self.running = True
                        pass
                    if line.find(" *** ") != -1:
                        self.substep=self.substep+1
                        progress=int(100*self.substep/self.step)
                        self.progressBar.setValue(progress)
                        pass
                    pass

                i=i+1
            if Tstep>0:
                self.groupBox.setTitle(QtGui.QApplication.translate("Calculation_progress", "Progress of Syrthes run", None, QtGui.QApplication.UnicodeUTF8))
                Gtsn=float(self.Control_form_copy.Le_Nts.text())
                if self.Control_form_copy.Ch_res_cal.isChecked()==True:
# isa                    resfile=open(self.case_copy.dirPath + os.sep + self.Filename_form_copy.Fn_Rs_lne.text()+'.res', "r")
                    resfile=open(self.case_copy.dirPath + os.sep + self.Filename_form_copy.Fn_Rs_lne.text(), "r")
                    #print '!!!!!!!!!!!!!',resfile
                    reslines=resfile.readlines()
                    Nrt=reslines[3].split()
                    Nrt=int(Nrt[1])
                    progress=int(((Tstep-Nrt)/(Gtsn-Nrt))*100)
                    resfile.close()
                else:
                    progress=int((Tstep/Gtsn)*100)
                self.progressBar.setValue(progress)
                                
                if progress == 100 :
                    # supprimer syrthes.run 
                    #Main.Syrthes_stopping()
                    print "Syrthes_completed"
                    #self.ResetScale()
                    self.emit(SIGNAL("Syrthes_completed"))
                    #self.emit(SIGNAL("Syrthes_stopping"))
                    #restore cursor
                    self.unsetCursor()
            self.nline = length
            self.textBrowser_3.moveCursor(QtGui.QTextCursor.Down, QtGui.QTextCursor.MoveAnchor)
            listfile.close()
            
        if self.tickflag==True:
            ticker=self.timer.singleShot(1000, self.Time_Clb)
            
    def afficherStderr(self):
        nameferr = self.case_copy.dirPath + os.sep + "stderr.txt"
        #self.textBrowser_4.clear()                
        myCharFormat = QtGui.QTextCharFormat()    
        myCharFormat.setFontFixedPitch(True) #monospace
        self.textBrowser_4.setCurrentCharFormat(myCharFormat)
        if os.access(nameferr, os.F_OK) :
            ferr = open(nameferr, "r+")
            ferrlines = ferr.readlines()
            errorflag = False
            for sline in ferrlines :
                if '\n' in sline :
                    print sline.split('\n')[0] # \n has not to be printed
                else:
                    print sline
                self.textBrowser_4.insertPlainText(unicode(sline,"utf-8"))
                if ("Stop Syrthes execution" in sline) or ("Traceback" in sline) :                            
                    errorflag = True

            if errorflag :
                #QMessageBox.information(self, 'Error', "Physical error or Unrecognized advanced keywords", QMessageBox.Ok)                                                        
                self.tabWidget.insertTab(2, self.tab_log, "Log")
                self.tabWidget.setCurrentIndex(2)
                #self.textBrowser_4.setFocus()
 
            if os.access(nameferr, os.F_OK) :
                ferr.close()
        pass
    
    def afficherStdout(self):
        namefout = self.case_copy.dirPath + os.sep + "stdout.txt"
        self.textBrowser_4.clear()                
        myCharFormat = QtGui.QTextCharFormat()    
        myCharFormat.setFontFixedPitch(True) #monospace
        self.textBrowser_4.setCurrentCharFormat(myCharFormat)
        if os.access(namefout, os.F_OK) :
            fout = open(namefout, "r+")
            foutlines = fout.readlines()
            for sline in foutlines :
                if '\n' in sline :
                    print sline.split('\n')[0] # \n has not to be printed
                else:
                    print sline
                self.textBrowser_4.insertPlainText(unicode(sline,"utf-8"))
            if os.access(namefout, os.F_OK) :
                fout.close()
        pass    
        
    def read_cp_file2(self, curve_index): # fonction de lecture des fichiers de sortis pour le suivis de calcul
        # en mode Run, cette fonction sera appelée environ tous les 1000 milisecondes
        # chercher le fichier contenant la sonde en question
        if curve_index == (-1,-1) : return
        probe_index=0
        if self.curves:
            probe_index = self.Cb_Tops[self.curves[curve_index].tabIndexLinked].currentIndex()
        self.DefDictProbe()
        if self.Cb_Top.currentText()!='': 
            hisname = self.dictProbe[str(probe_index)]
        else:
            hisname = self.dictProbe['0'] # situate at the first probe if 1st time

        if os.access(hisname, os.F_OK):
            cp_file=open(hisname, "r")
            if self.Cb_Top.currentText()!='':
                # récupérer les coordonnées de la sonde en question
                if self.Home_form_copy.Dim_Comb.currentIndex()==0:
                    table=self.Output_3D_form_copy.Op_Dc_3D_table
                    x=float(table.item(self.probesList[probe_index],1).text())
                    y=float(table.item(self.probesList[probe_index],2).text())
                    z=float(table.item(self.probesList[probe_index],3).text())
                else:
                    table=self.Output_2D_form_copy.Op_Dc_2D_table
                    x=float(table.item(self.probesList[probe_index],1).text())
                    y=float(table.item(self.probesList[probe_index],2).text())
                
                # définir la colonne contenant la coordonnée x (ix)
                ix = 0
                
                # charger les vecteurs Time_i et Temper_i
                Time_i = []
                Temper_i = []   
                vP_i = []
                taP_i = []            
                l0=[]
                valueMap={}
                for line in cp_file:
                    if l0 == [] :
                        # Save the table header
                        l0 = line.split()
                        i = -1
                        for word in l0:
                            if "x" == word.strip():
                                ix=i
                            i=i+1
                            pass
                        continue

                    line=line.split()
                    
                    if self.Home_form_copy.Dim_Comb.currentIndex()==0:                        
                        if not(float(line[ix])==x and float(line[ix+1])==y and float(line[ix+2])==z):
                            continue
                    else:
                        if not(float(line[ix])==x and float(line[ix+1])==y):
                            continue                

                    if self.curves == {}:
                        for word in l0[1:ix+1]:
                            if word != "time":
                                self.history_names.append(word)
                                pass
                            pass
                        self.updateCb_Vars()
                        #self.updateCurves()
                        self.addHistoryCurves()
                        self.curves[curve_index].tabIndexLinked = 0
                        pass

                    if valueMap.keys() == []:
                        for word in l0[1:ix+1]:
                            valueMap[word]=[]
                            pass
                        pass
                    
                    i=0
                    for word in l0[1:ix+1]:
                        valueMap[word].append(float(line[i]))
                        i=i+1
                        pass

                    #Time_i.append(float(line[0]))
                    #Temper_i.append(float(line[1]))
                    #if ix > 2 : # si modèle 2 ou 3 équations
                    #    vP_i.append(float(line[2]))
                    #if ix == 4 : # si modèle 3 équations
                    #    taP_i.append(float(line[3]))    
                
                # pression vapeur --> courbe i+4
                # pression totale --> courbe i+8
                tabIndexLink = self.curves[curve_index].tabIndexLinked
                currentVarText = self.Cb_Vars[tabIndexLink].currentText()
                # mettre à jour la courbe correspondant à la sonde en question
                #print self.curves[curve_index].valueMap["time"]
                if valueMap["time"] != [] :
                    #self.curves[curve_index].taP = taP_i        
                    #print currentVarText, self.curves[curve_index].valueMap.keys()
                    self.curves[curve_index].valueMap.update(valueMap)
                    self.curves[curve_index].refreshCurve(str(currentVarText))
                    self.curves[curve_index].setStyle(self.Cb_LineStyles[tabIndexLink].currentIndex()+1)
                    self.curves[curve_index].attach(self.plot) 
                    if self.mark==True:
                        self.marker.detach()
                        self.mark=False
                else:
                    # mis à jour les liens entre les onglets et les courbes     
                    # désaffecter cet onglet (tabIndexLinked) de cette courbe vide    
                    # contrôler si cette courbe courbe appartient à un autre onglet (variable "ailleur") 
                    ailleur = -1
                    for ti in range(self.tabPlot.nbActif) :
                        if ti != currentTabIndex and self.tabPlot.curveIndexLinked[ti] == curve_index :
                            ailleur = ti
                            break
                    self.curves[curve_index].tabIndexLinked = ailleur           
                    self.tabPlot.curveIndexLinked[currentTabIndex] = -1,-1                    
                    self.curves[curve_index].razData()
                    self.curves[curve_index].detach()
                    # s'il n'y a plus de courbes, il faudra mettre "Awaiting data" au milieu
            cp_file.close()
    
    def read_cp_SURF(self, curve_index):
        fluname = self.case_copy.fluname
        #SURF Time= 1.00000000e+00 Balance   1 * Temp_Flux=  1.17689e-01 * Vapor_Flux=  5.31073e-03 * Dry_Air_Flux=  0.00000e+00        

        float_string="-?[0-9]+\.[0-9]+e(\+|-)[0-9]+"
        string_string="[a-zA-Z\_]*"
        int_string="[0-9]+"

        balance_pattern=re.compile(r'(?P<btype>[a-zA-Z]+)\s+Time=\s+(?P<time>'+float_string+')\s+Balance\s+(?P<balance>'+int_string+')\s+')
        var_pattern=re.compile(r'\s*(?P<name>'+string_string+')\s*=\s*(?P<value>'+float_string+')\s*')

        surf_balance_list=[]
        vol_balance_list=[]
        btype=""
        balance = -1
        ti = -1
        if os.access(fluname, os.F_OK) :
            cp_file=open(fluname, "r+")
            currentTabIndex = self.tabPlot.currentIndex()
            Time_i = []
            valueMap = {}
            l0 = []
            l1 = []

            for line in cp_file:
                for word in line.split('*'):
                    if balance_pattern.match(word):
                        bp_match=balance_pattern.match(word)
                        btype=bp_match.group("btype")
                        ti=bp_match.group("time")
                        balance=bp_match.group("balance")
                        if "time" not in valueMap.keys():
                            valueMap["time"] = []
                            pass
                    if var_pattern.match(word):
                        if btype == "SURF":
                            vp_match=var_pattern.match(word)
                            name = vp_match.group("name")
                            if name not in valueMap.keys():
                                valueMap[name] = []
                                l0.append(name)
                                pass
                            pass
                        pass
                    pass
                if self.surface_balance_names == [] and btype == "SURF":
                    self.surface_balance_names = l0
                    self.addSurfaceCurves()
                    cp_file.close()
                    return
                    pass
                pass

            cp_file=open(fluname, "r+")
            for line in cp_file:
                i=0
                for word in line.split('*'):
                    if balance_pattern.match(word):
                        bp_match=balance_pattern.match(word)
                        btype=bp_match.group("btype")
                        ti=float(bp_match.group("time"))
                        balance=bp_match.group("balance")
                        if "time" not in valueMap.keys():
                            valueMap["time"] = []
                            pass
                    elif var_pattern.match(word):
                        if btype == "SURF" and (int(balance) == curve_index[1] + 1 - i*self.nbRefSURF):
                            vp_match=var_pattern.match(word)
                            name = vp_match.group("name")
                            value = float(vp_match.group("value"))
                            if name not in valueMap.keys():
                                valueMap[name] = []
                                pass
                            valueMap[name].append(value)
                            valueMap["time"].append(ti)
                            pass
                        i=i+1
                        pass
                    pass
                pass


            # mettre à jour la courbe correspondant à la sonde en question
            tabIndexLink = self.curves[curve_index].tabIndexLinked
            currentVarText = self.Cb_Vars[tabIndexLink].currentText()
            if valueMap["time"] != [] :
                self.curves[curve_index].valueMap.update(valueMap)
                if currentVarText in valueMap.keys():
                    self.curves[curve_index].refreshCurve(str(currentVarText))
                    self.curves[curve_index].setStyle(self.Cb_LineStyles[currentTabIndex].currentIndex()+1)
                    self.curves[curve_index].attach(self.plot)
                if self.mark==True:
                    self.marker.detach()
                    self.mark=False
            else:
                # mis à jour les liens entre les onglets et les courbes     
                # désaffecter cet onglet (tabIndexLinked) de cette courbe vide    
                # contrôler si cette courbe courbe appartient à un autre onglet (variable "ailleur") 
                ailleur = -1
                for ti in range(self.tabPlot.nbActif) :
                    if ti != currentTabIndex and self.tabPlot.curveIndexLinked[ti] == curve_index :
                        ailleur = ti
                        break
                self.curves[curve_index].tabIndexLinked = ailleur           
                self.tabPlot.curveIndexLinked[currentTabIndex] = -1,-1
                self.curves[curve_index].razData()
                self.curves[curve_index].detach()
                # s'il n'y a plus de courbes, il faudra mettre "Awaiting data" au milieu
            cp_file.close()

    def read_cp_VOL(self, curve_index):
        fluname = self.case_copy.fluname
        #VOL Time= 1.00000000e+00 Balance   1 * Temp_Flux=  1.17689e-01 * Vapor_Flux=  5.31073e-03 * Dry_Air_Flux=  0.00000e+00        

        float_string="-?[0-9]+\.[0-9]+e(\+|-)[0-9]+"
        string_string="[a-zA-Z\_]*"
        int_string="[0-9]+"

        balance_pattern=re.compile(r'(?P<btype>[a-zA-Z]+)\s+Time=\s+(?P<time>'+float_string+')\s+Balance\s+(?P<balance>'+int_string+')\s+')
        var_pattern=re.compile(r'\s*(?P<name>'+string_string+')\s*=\s*(?P<value>'+float_string+')\s*')

        surf_balance_list=[]
        vol_balance_list=[]
        btype=""
        balance = -1
        ti = -1
        if os.access(fluname, os.F_OK) :
            cp_file=open(fluname, "r+")
            currentTabIndex = self.tabPlot.currentIndex()
            Time_i = []
            valueMap = {}
            l0 = []

            for line in cp_file:
                for word in line.split('*'):
                    if balance_pattern.match(word):
                        bp_match=balance_pattern.match(word)
                        btype=bp_match.group("btype")
                        ti=bp_match.group("time")
                        balance=bp_match.group("balance")
                        if "time" not in valueMap.keys():
                            valueMap["time"] = []
                            pass
                    if var_pattern.match(word):
                        if btype == "VOL":
                            vp_match=var_pattern.match(word)
                            name = vp_match.group("name")
                            if name not in valueMap.keys():
                                valueMap[name] = []
                                l0.append(name)
                                pass
                            pass
                        pass
                    pass
                if self.volume_balance_names == [] and btype == "VOL":
                    self.volume_balance_names = l0
                    self.addVolumeCurves()
                    cp_file.close()
                    return
                    pass
                pass

            cp_file=open(fluname, "r+")
            for line in cp_file:
                i=0
                for word in line.split('*'):
                    if balance_pattern.match(word):
                        bp_match=balance_pattern.match(word)
                        btype=bp_match.group("btype")
                        ti=float(bp_match.group("time"))
                        balance=bp_match.group("balance")
                        if "time" not in valueMap.keys():
                            valueMap["time"] = []
                            pass
                    elif var_pattern.match(word):
                        if btype == "VOL" and (int(balance) == curve_index[1] + 1 - i*self.nbRefVOL):
                            vp_match=var_pattern.match(word)
                            name = vp_match.group("name")
                            value = float(vp_match.group("value"))
                            if name not in valueMap.keys():
                                valueMap[name] = []
                                pass
                            valueMap[name].append(value)
                            valueMap["time"].append(ti)
                            pass
                        i=i+1
                        pass
                    pass
                pass


            # mettre à jour la courbe correspondant à la sonde en question
            tabIndexLink = self.curves[curve_index].tabIndexLinked
            currentVarText = self.Cb_Vars[tabIndexLink].currentText()
            if valueMap["time"] != [] :
                self.curves[curve_index].valueMap.update(valueMap)
                if currentVarText in valueMap.keys():
                    self.curves[curve_index].refreshCurve(str(currentVarText))
                    self.curves[curve_index].setStyle(self.Cb_LineStyles[currentTabIndex].currentIndex()+1)
                    self.curves[curve_index].attach(self.plot)
                if self.mark==True:
                    self.marker.detach()
                    self.mark=False
            else:
                # mis à jour les liens entre les onglets et les courbes     
                # désaffecter cet onglet (tabIndexLinked) de cette courbe vide    
                # contrôler si cette courbe courbe appartient à un autre onglet (variable "ailleur") 
                ailleur = -1
                for ti in range(self.tabPlot.nbActif) :
                    if ti != currentTabIndex and self.tabPlot.curveIndexLinked[ti] == curve_index :
                        ailleur = ti
                        break
                self.curves[curve_index].tabIndexLinked = ailleur           
                self.tabPlot.curveIndexLinked[currentTabIndex] = -1,-1
                self.curves[curve_index].razData()
                self.curves[curve_index].detach()
                # s'il n'y a plus de courbes, il faudra mettre "Awaiting data" au milieu
            cp_file.close()
            pass
        pass
    
    def DefDictProbe(self, parent=None):
        """ 
        Procedure defining the couples probe number <-> file name
        Will be called in self.Cb_Top_Clb, i.e. each time users change the probe
        """
        ix=0
        for probei in range(self.nbProbes): # loop for probes
            # search for coordinates of this probe
            if self.Home_form_copy.Dim_Comb.currentIndex()==0:
                table=self.Output_3D_form_copy.Op_Dc_3D_table
                x=float(table.item(self.probesList[probei],1).text())
                y=float(table.item(self.probesList[probei],2).text())
                z=float(table.item(self.probesList[probei],3).text())
            else:
                table=self.Output_2D_form_copy.Op_Dc_2D_table
                x=float(table.item(self.probesList[probei],1).text())
                y=float(table.item(self.probesList[probei],2).text())
            
            if self.case_copy.getNbProc() > 1: 
                # parcourir tous les fichiers .his (autant nombreux que les proc)
                found = False # by default, probe is not found
                for filei in range(self.case_copy.getNbProc()): 
                    if os.access(self.case_copy.getHisFullPath(filei), os.F_OK): # .../PART/prefix_part0000n.his
                        cp_file=open(self.case_copy.getHisFullPath(filei), "r")
                        l1=''
                        l0=[]
                        # looking in all lines in the current file .his
                        lineNo = 0 # line number in file .his
                        for line in cp_file.readlines(): 
                            lineNo += 1
                            if l0 == [] :
                                # Save the table header
                                l0 = line.split()
                                i = -1
                                for word in l0:
                                    if "x" == word.strip():
                                        ix=i
                                    i=i+1
                                    pass
                                continue
                            # if lineNo > self.nbProbes : 
                            #     break # we don't have to read all lines in a file but the same line as the number of probes
                            if l1 == '' :
                                l1 = line.split() # save the first line to l1 (l + one)
                            
                            l = line.split() # 1st, 2nd line and so on
                            if l[0] != l1[0] : # stop because we only want to look at the first time step 
                                break               
            
                            # looking for probe
                            if self.Home_form_copy.Dim_Comb.currentIndex()==0: # 3D
                                if float(l[ix])==x and float(l[ix+1])==y and float(l[ix+2])==z: # probe 3D found
                                    self.dictProbe[str(probei)] = self.case_copy.getHisFullPath(filei)
                                    found = True
                                    break # break loop of lines because the probe has been found
                            else: # 2D
                                if float(l[ix])==x and float(l[ix+1])==y: # probe 2D found
                                    self.dictProbe[str(probei)] = self.case_copy.getHisFullPath(filei)
                                    found = True
                                    break # break loop of lines because the probe has been found
                            pass # pass looking in all lines in the current file
    
                        cp_file.close() # close current file to go to next file
                        if found == True:
                            break # break loop of files .his because the probe has been found
            else: # nbProc = 1
                found = False
                if os.access(self.case_copy.getHisFullPath(0), os.F_OK):
                    cp_file=open(self.case_copy.getHisFullPath(0), "r")
                    l1=''
                    l0=[]
                    # looking in all lines in the current file .his
                    for line in cp_file.readlines(): 
                        if l0 == [] :
                            # Save the table header
                            l0 = line.split()
                            i=-1
                            for word in l0:
                                if "x" == word.strip():
                                    ix=i
                                i=i+1
                                pass
                            continue
                        if l1 == '' :
                            l1 = line.split() # save the first line to l1 (l + one)
                        
                        l = line.split() # 1st, 2nd line and so on
                        if l[0] != l1[0] : # stop because we only want to look at the first time step 
                            break               
        
                        # looking for probe
                        if self.Home_form_copy.Dim_Comb.currentIndex()==0: # 3D
                            if float(l[ix])==x and float(l[ix+1])==y and float(l[ix+2])==z: # probe 3D found
                                self.dictProbe[str(probei)] = self.case_copy.getHisFullPath(0)
                                found = True
                                break
                        else: # 2D
                            if float(l[ix])==x and float(l[ix+1])==y: # probe 2D found
                                self.dictProbe[str(probei)] = self.case_copy.getHisFullPath(0)
                                found = True
                                break
                        pass # pass looking in all lines in the current file
                    cp_file.close()  
            if found != True: # alert users that the probe doesn't exist
                #QMessageBox.question(self, 'Message',
                #                     "Probe not found. Please try another probe.", QMessageBox.Ok)
                self.dictProbe[str(probei)] = "-1"               
            pass # loop for cbTop (probes)
        self.dictProbe[str(self.nbProbes)] = "-2"
        
    def Cb_Top_Clb2(self): # fonction de rappel permettant le changement de la sonde à afficher dans le graphique
    # 2 tableaux sont importants ici :
    # appartenance d'une courbe à un ou plusieurs onglets self.tabPlot.curveIndexLinked[index_onglet] = index_courbe
    # appartenance d'un onglet à une courbe self.curves[index_curve].tabIndexLinked = index_onglet
        Cb_Top = QApplication.focusWidget()
        
        if not (Cb_Top in self.Cb_Tops) :
            # not a combobox
            return
        if Cb_Top.currentIndex() == -1 :
            return
                
        # raccourcis :
        oldTypeIndex,oldCurveIndex = self.tabPlot.curveIndexLinked[self.tabPlot.currentIndex()]
        curve_index_base = Cb_Top.currentIndex()
        currentTabIndex = self.tabPlot.currentIndex()
        # temp --> courbe i
        # ex. 4 sondes --> pression vapeur --> courbe i+4
        # ex. 4 sondes --> pression totale --> courbe i+8        
        # ex. 4 sondes --> surface balance --> courbe i+12
        # ex. 4 sondes + 2 ref surfaces balance --> volume balance --> courbe i + 14
        newCurveIndex = curve_index_base
        if curve_index_base == len(self.curves):
            curve_index_base = 0

        currentVarIndex = self.Cb_Vars[currentTabIndex].currentIndex()
        ## currentVarText = self.Cb_Vars[currentTabIndex].currentText()                 
        currentVarText = self.Cb_Vars[currentTabIndex].currentText()                 
        currentTypeText = self.Cb_Types[currentTabIndex].currentText()                 
        currentTypeIndex = self.Cb_Types[currentTabIndex].currentIndex()
        
        newCurveIndex = curve_index_base
        #if curve_index_base == len(self.curves[currentTypeIndex]):
        #    curve_index_base = 0

        if currentVarText in self.history_names:
            for i in range(len(self.history_names)):
                if currentVarText == self.history_names[i]:
                    newCurveIndex = curve_index_base + i*self.nbProbes
        elif currentVarText in self.surface_balance_names: # pression totale
            for i in range(len(self.surface_balance_names)):
                if currentVarText == self.surface_balance_names[i] and currentTypeText == "Surface balance:":
                    newCurveIndex = curve_index_base + i*self.nbRefSURF
        elif currentVarText in self.volume_balance_names: # pression totale
            for i in range(len(self.volume_balance_names)):
                if currentVarText == self.volume_balance_names[i] and currentTypeText == "Volume balance:":
                    newCurveIndex = curve_index_base + i*self.nbRefVOL

        # ne plus souhaitable :
        # sortir si la courbe choisie appatient à un autre onglet
        #if self.curves[newCurveIndex].tabIndexLinked != -1 :
        #    self.Cb_Tops[currentTabIndex].setCurrentIndex(oldCurveIndex)
        #    return
    
        # mis à jour les liens entre les onglets et les courbes                
        
        if Cb_Top.currentText() != "None" :
            self.curves[currentTypeIndex, newCurveIndex].tabIndexLinked = currentTabIndex
            self.tabPlot.curveIndexLinked[currentTabIndex] = currentTypeIndex,newCurveIndex

        # désaffecter cet onglet (tabIndexLinked) à l'ancienne courbe
        # et détacher l'ancienne courbe        
        # précédent contrôle ne plus applicable -> contrôler si l'ancienne courbe (old curve)...
        # ...appartient à un autre onglet (variable "ailleur") 
        ailleur = -1
        for ti in range(self.tabPlot.nbActif) :
            if ti != currentTabIndex and self.tabPlot.curveIndexLinked[ti] == (oldTypeIndex,oldCurveIndex) :
                ailleur = ti
                break
        if ailleur == -1 : # l'ancienne courbe n'a pas de duplicata -> détacher
            if oldCurveIndex != -1 :
                self.curves[oldTypeIndex,oldCurveIndex].tabIndexLinked = -1
                self.curves[oldTypeIndex,oldCurveIndex].detach()
        else :
            if oldCurveIndex != -1:
                self.curves[oldTypeIndex,oldCurveIndex].tabIndexLinked = ailleur

        # contrôler si la nouvelle courbe appartient à un autre onglet (variable "ailleur")
        # pour homogénéiser son style
        if Cb_Top.currentText() != "None" :
            ailleur = -1
            for ti in range(self.tabPlot.nbActif) :
                if ti != currentTabIndex and self.tabPlot.curveIndexLinked[ti] == (currentTypeIndex,newCurveIndex) :
                    ailleur = ti
                    # changer le style de ce duplicata
                    self.ne_pas_repondre_style = True
                    self.Cb_LineStyles[ti].setCurrentIndex(self.Cb_LineStyles[currentTabIndex].currentIndex())
            
            self.ne_pas_repondre_style = False

        # print "----------après-----------"
        # for (j,i) in self.curves.keys():
        #     if self.curves[j,i].tabIndexLinked+1:
        #         print "courbe", j, i+1, "appartenant à l'onglet n°", self.curves[j,i].tabIndexLinked+1
        # for i in range(len(self.tabPlot.tabs)):
        #     if self.tabPlot.curveIndexLinked[i][0]+1 and self.tabPlot.curveIndexLinked[i][1]+1:
        #         print "tab n°", i+1, "contient la courbe n°", self.tabPlot.curveIndexLinked[i][0], self.tabPlot.curveIndexLinked[i][j]+1                
        # print "--------------------------"

                                
        if Cb_Top.currentText()=="None": # probe "None" :
            self.tabPlot.curveIndexLinked[currentTabIndex] = -1,-1
            self.plot.setAxisAutoScale(Qwt.QwtPlot.yLeft)
            self.plot.setAxisAutoScale(Qwt.QwtPlot.xBottom)
        elif currentTypeText != "Surface balance:" and currentTypeText != "Volume balance:" :
            # on travaille sur les sondes
            self.DefDictProbe()

            # check availability of data

            if self.dictProbe[str(Cb_Top.currentIndex())] == "-1" : # probe is not found                
                if not os.access(self.case_copy.getHisFullPath(0), os.F_OK): 
                    QMessageBox.information(self, 'Message', "Result files not found.", QMessageBox.Ok)
                else:
                    QMessageBox.information(self, 'Message', "Probe not found. Please try another probe.", QMessageBox.Ok)
                Cb_Top.setCurrentIndex(Cb_Top.count()-1)
                self.tabPlot.curveIndexLinked[currentTabIndex] = -1,-1
                            
                self.plot.setAxisAutoScale(Qwt.QwtPlot.yLeft)
                self.plot.setAxisAutoScale(Qwt.QwtPlot.xBottom)    
                #self.Time=[]
                #self.Temper=[]
                #self.curve.setData(self.Time, self.Temper)
            else: # probe found
                # contrôle ne plus souhaitable :
                # détacher une courbe si tabIndexLinked = ce tab
                #for i in range(len(self.curves)):
                #    if self.curves[i].tabIndexLinked == self.tabPlot.currentIndex() :
                #        self.curves[i].detach()
                self.read_cp_file2(self.tabPlot.curveIndexLinked[currentTabIndex])

                self.plot.setAxisAutoScale(Qwt.QwtPlot.yLeft)
                for i in range(self.tabPlot.count()):
                    if self.tabPlot.yRightEnabled[i]:
                        self.plot.setAxisAutoScale(Qwt.QwtPlot.yRight)
                        pass
                    pass
                self.plot.setAxisAutoScale(Qwt.QwtPlot.xBottom)
        else:
            # à contrôler l'accès 
            if self.Cb_Types[currentTabIndex].currentText() == "Surface balance:":
                self.read_cp_SURF(self.tabPlot.curveIndexLinked[currentTabIndex])
            elif self.Cb_Types[currentTabIndex].currentText() == "Volume balance:":
                self.read_cp_VOL(self.tabPlot.curveIndexLinked[currentTabIndex])

            self.plot.setAxisAutoScale(Qwt.QwtPlot.yLeft)
            for i in range(self.tabPlot.count()):
                if self.tabPlot.yRightEnabled[i]:
                    self.plot.setAxisAutoScale(Qwt.QwtPlot.yRight)
                    pass
                pass
            self.plot.setAxisAutoScale(Qwt.QwtPlot.xBottom)
                
        # print "----------après-----------"
        # for (j,i) in self.curves.keys():
        #     if self.curves[j,i].tabIndexLinked+1:
        #         print "courbe", j, i+1, "appartenant à l'onglet n°", self.curves[j,i].tabIndexLinked+1
        # for i in range(len(self.tabPlot.tabs)):
        #     if self.tabPlot.curveIndexLinked[i][0]+1 and self.tabPlot.curveIndexLinked[i][1]+1:
        #         print "tab n°", i+1, "contient la courbe n°", self.tabPlot.curveIndexLinked[i][0], self.tabPlot.curveIndexLinked[i][1]+1                 
        # print "--------------------------"

        self.updateTitle()
        
        if self.tabPlot.boolAwaitingData() : # s'il n'y a aucune graphique à tracer
            self.marker.attach(self.plot)
            self.mark=True  
              
            self.plot.setAxisScale(Qwt.QwtPlot.yLeft, 0, 1000)
            self.plot.setAxisScale(Qwt.QwtPlot.xBottom, 0, 1000)
        else:
            try :
                self.marker.detach()
                self.mark=False
            except :
                pass
        # en option : even if Probe not found, but we still display the coordinates so that users can check whether they are correct       
        #if self.tabPlot.nbActif == 1 :
        #    if self.Home_form_copy.Dim_Comb.currentIndex()==0:
        #        table=self.Output_2D_form_copy.Op_Dc_3D_table
        #        x=table.item(int(Cb_Top.currentText())-1,1).text()
        #        y=table.item(int(Cb_Top.currentText())-1,2).text()
        #        z=table.item(int(Cb_Top.currentText())-1,3).text()
        #        ttext = Qwt.QwtText(self.Cb_Vars[0].currentText()+' ['+x+';'+y+';'+z+']')
        #        ttext.setFont(QFont(self.fn, 8, QFont.Normal))
        #        self.plot.setTitle(ttext)
        #    else:
        #        table=self.Output_2D_form_copy.Le2_2D_Op
        #        x=table.item(int(Cb_Top.currentText())-1,1).text()
        #        y=table.item(int(Cb_Top.currentText())-1,2).text()
        #        ttext = Qwt.QwtText(self.Cb_Vars[0].currentText()+' ['+x+';'+y+']')
        #        ttext.setFont(QFont(self.fn, 8, QFont.Normal))
        #        self.plot.setTitle(ttext)      
        #else :
        #    self.plot.setTitle('')
        
        ###self.zoomer = Qwt.QwtPlotZoomer(Qwt.QwtPlot.xBottom,
        ###                                Qwt.QwtPlot.yLeft,
        ###                                Qwt.QwtPicker.DragSelection,
        ###                                Qwt.QwtPicker.AlwaysOff,
        ###                                self.plot.canvas())
        ###self.zoomer.setRubberBandPen(Qt.QPen(Qt.Qt.black))
                
        self.plot.replot()
        pass
    
    def Cb_Var_Clb(self): # fonction de rappel permettant le changement du type de variable à afficher dans le graphique
        Cb_Var = QApplication.focusWidget()
        
        if not (Cb_Var in self.Cb_Vars) :
            # not a combobox de type de variable
            return        
        
        if Cb_Var.currentIndex() == -1 :
            return
               
        currentTabIndex = self.tabPlot.currentIndex()
        currentTypeIndex = self.Cb_Types[currentTabIndex].currentIndex()
        oldTypeIndex,oldCurveIndex = self.tabPlot.curveIndexLinked[self.tabPlot.currentIndex()]
        self.tabPlot.curveIndexLinked[currentTabIndex] = -1,-1 # l'onglet n'est plus lié à aucune courbe
        self.updateCb_Top(currentTabIndex)

        self.Rb_ButtonGroups[currentTabIndex].button(1).setChecked(True)
        self.tabPlot.yRightEnabled[currentTabIndex] = False

        if oldCurveIndex == -1 : 
            self.plot.replot()
            return      

        # désaffecter cet onglet (tabIndexLinked) à l'ancienne courbe
        # et détacher l'ancienne courbe        
        # précédent contrôle ne plus applicable -> contrôler si l'ancienne courbe (old curve)...
        # ...appartient à un autre onglet (variable "ailleur") 
        ailleur = -1
        for ti in range(self.tabPlot.nbActif) :
            if ti != currentTabIndex and self.tabPlot.curveIndexLinked[ti] == (oldTypeIndex,oldCurveIndex) :
                ailleur = ti
                break
        if ailleur == -1 : # l'ancienne courbe n'a pas de duplicata -> détacher
            self.curves[oldTypeIndex,oldCurveIndex].tabIndexLinked = -1
            self.curves[oldTypeIndex,oldCurveIndex].detach()
        else :
            self.curves[oldTypeIndex,oldCurveIndex].tabIndexLinked = ailleur
        
        self.updateTitle()
                
        if self.tabPlot.boolAwaitingData() : # s'il n'y a aucune graphique à tracer
            self.marker.attach(self.plot)
            self.mark=True  
              
            self.plot.setAxisScale(Qwt.QwtPlot.yLeft, 0, 1000)
            self.plot.setAxisScale(Qwt.QwtPlot.xBottom, 0, 1000)
        else :
            try :
                self.marker.detach()
                self.mark=False
            except :
                pass
            self.plot.setAxisAutoScale(Qwt.QwtPlot.yLeft)
            self.plot.setAxisAutoScale(Qwt.QwtPlot.xBottom)
        
        self.plot.replot()
        pass

    def Cb_Type_Clb(self):
        currentTabIndex = self.tabPlot.currentIndex()
        oldTypeIndex,oldCurveIndex = self.tabPlot.curveIndexLinked[self.tabPlot.currentIndex()]
        #self.updateCb_Top(currentTabIndex)
        self.tabPlot.curveIndexLinked[currentTabIndex] = -1,-1 # l'onglet n'est plus lié à aucune courbe

        self.Rb_ButtonGroups[currentTabIndex].button(1).setChecked(True)
        self.tabPlot.yRightEnabled[currentTabIndex] = False

        #if oldCurveIndex == -1 : 
        #    self.plot.replot()
        #    return      

        # désaffecter cet onglet (tabIndexLinked) à l'ancienne courbe
        # et détacher l'ancienne courbe        
        # précédent contrôle ne plus applicable -> contrôler si l'ancienne courbe (old curve)...
        # ...appartient à un autre onglet (variable "ailleur") 
        ailleur = -1
        for ti in range(self.tabPlot.nbActif) :
            if ti != currentTabIndex and self.tabPlot.curveIndexLinked[ti] == (oldTypeIndex,oldCurveIndex) :
                ailleur = ti
                break
        if ailleur == -1 : # l'ancienne courbe n'a pas de duplicata -> détacher
            if (oldTypeIndex,oldCurveIndex) != (-1,-1):
                self.curves[oldTypeIndex,oldCurveIndex].tabIndexLinked = -1
                self.curves[oldTypeIndex,oldCurveIndex].detach()
        else :
            if (oldTypeIndex,oldCurveIndex) != (-1,-1):
                self.curves[oldTypeIndex,oldCurveIndex].tabIndexLinked = ailleur
        
        if self.Cb_Types[currentTabIndex].currentText() == "Surface balance:" and self.surface_balance_names == []:
            self.read_cp_SURF(self.tabPlot.curveIndexLinked[currentTabIndex])
        elif self.Cb_Types[currentTabIndex].currentText() == "Volume balance:" and self.volume_balance_names == []:
            self.read_cp_VOL(self.tabPlot.curveIndexLinked[currentTabIndex])
        elif self.history_names == []:
            self.read_cp_file2(self.tabPlot.curveIndexLinked[currentTabIndex])
            pass

        self.updateCb_Var(currentTabIndex)
        self.updateCb_Top(currentTabIndex)

        if self.tabPlot.boolAwaitingData() : # s'il n'y a aucune graphique à tracer
            self.marker.attach(self.plot)
            self.mark=True  
              
            self.plot.setAxisScale(Qwt.QwtPlot.yLeft, 0, 1000)
            self.plot.setAxisScale(Qwt.QwtPlot.xBottom, 0, 1000)
        else :
            try :
                self.marker.detach()
                self.mark=False
            except :
                pass
            self.plot.setAxisAutoScale(Qwt.QwtPlot.yLeft)
            self.plot.setAxisAutoScale(Qwt.QwtPlot.xBottom)

        
        self.plot.replot()
        pass

    def Rb_ButtonGroup_Clb(self,index):
        currentTabIndex = self.tabPlot.currentIndex()
        curve_index_base = self.Cb_Tops[currentTabIndex].currentIndex()

        currentTypeIndex,currentCurveIndex = self.tabPlot.curveIndexLinked[currentTabIndex]

        currentVarIndex = self.Cb_Vars[currentTabIndex].currentIndex()
        ## currentVarText = self.Cb_Vars[currentTabIndex].currentText()                 
        currentVarText = self.Cb_Vars[currentTabIndex].currentText()                 
        currentTypeText = self.Cb_Types[currentTabIndex].currentText()                 
        currentTypeIndex = self.Cb_Types[currentTabIndex].currentIndex()

        if index == 2:
            self.curves[currentTypeIndex,currentCurveIndex].detach()
            self.plot.setAxisAutoScale(Qwt.QwtPlot.yLeft)
            self.plot.setAxisAutoScale(Qwt.QwtPlot.xBottom)
            
            if self.tabPlot.boolAwaitingData() : # s'il n'y a aucune graphique à tracer
                self.marker.attach(self.plot)
                self.mark=True  
                
                self.plot.setAxisScale(Qwt.QwtPlot.yLeft, 0, 1000)
                self.plot.setAxisScale(Qwt.QwtPlot.xBottom, 0, 1000)
            else:
                try :
                    self.marker.detach()
                    self.mark=False
                except :
                    pass
                pass
        else:
            if currentTypeText != "Surface balance:" and currentTypeText != "Volume balance:" :
                self.read_cp_file2(self.tabPlot.curveIndexLinked[currentTabIndex])
            else:
                if self.Cb_Types[currentTabIndex].currentText() == "Surface balance:":
                    self.read_cp_SURF(self.tabPlot.curveIndexLinked[currentTabIndex])
                elif self.Cb_Types[currentTabIndex].currentText() == "Volume balance:":
                    self.read_cp_VOL(self.tabPlot.curveIndexLinked[currentTabIndex])

            if index == 1:
                self.tabPlot.yRightEnabled[currentTabIndex] = False
                self.curves[currentTypeIndex,currentCurveIndex].setYAxis(Qwt.QwtPlot.yLeft)

            elif index == 3:
                self.tabPlot.yRightEnabled[currentTabIndex] = True
                self.plot.enableAxis(Qwt.QwtPlot.yRight)
                self.curves[currentTypeIndex,currentCurveIndex].setYAxis(Qwt.QwtPlot.yRight)
                pass

        self.updateTitle()

        self.plot.setAxisAutoScale(Qwt.QwtPlot.yLeft)
        isYRightEnabled=False
        for i in range(self.tabPlot.count()):
            if self.tabPlot.yRightEnabled[i]:
                self.plot.setAxisAutoScale(Qwt.QwtPlot.yRight)
                isYRightEnabled=True
                pass
            pass
        if not isYRightEnabled:
            self.plot.enableAxis(Qwt.QwtPlot.yRight,False)
            
        self.plot.setAxisAutoScale(Qwt.QwtPlot.xBottom)

        self.plot.replot()

        pass

    def Cb_Style_Clb(self):
        if self.ne_pas_repondre_style == True :
            return
        
        Cb_Style = QApplication.focusWidget()
        
        if not (Cb_Style in self.Cb_LineStyles) :
            # not a combobox linestyle
            return
        
        # raccourcis        
        currentTabIndex = self.tabPlot.currentIndex()
        currentTypeIndex,currentCurveIndex = self.tabPlot.curveIndexLinked[currentTabIndex]
        
        # set style
        # index 0 -> style 0+1 -> Qt.Qt.SolidLine 
        # index 1 -> style 1+1 -> Qt.Qt.DashLine
        # index 2 -> style 2+1 -> Qt.Qt.DotLine
        # index 3 -> style 3+1 -> Qt.Qt.DastDotLine
        self.curves[currentTypeIndex,currentCurveIndex].setStyle(Cb_Style.currentIndex()+1)
        
        
        # contrôler si la courbe...
        # ...appartient à un autre onglet (variable "ailleur") 
        ailleur = -1
        for ti in range(self.tabPlot.nbActif) :
            if ti != currentTabIndex and self.tabPlot.curveIndexLinked[ti] == (currentTypeIndex,currentCurveIndex) :
                ailleur = ti
                # changer le style de ce duplicata
                self.ne_pas_repondre_style = True
                self.Cb_LineStyles[ti].setCurrentIndex(Cb_Style.currentIndex())
        
        self.ne_pas_repondre_style = False
        self.plot.replot()

    def updateTitle(self):       
        code = ['',''] 
        isYRightEnabled = False
        for ti in range(self.tabPlot.nbActif) :
            axisId=0
            if self.tabPlot.yRightEnabled[ti]:
                isYRightEnabled = True
                axisId=1
            if self.Cb_Tops[ti].currentText() != '' and self.Cb_Tops[ti].currentText() != 'None' :
                if string.find(code[axisId],str(self.Cb_Vars[ti].currentText())) == -1:
                    code[axisId] = code[axisId] +' '+ str(self.Cb_Vars[ti].currentText())
        
        title = ['', '']
        for i in range(len(code)):
            if string.find(code[i], 'Temperature of probe') != -1 :
                title[i] = title + u"Temp.(°C) ; "
            elif string.find(code[i], 'Vapor pressure of probe') != -1 :
                title[i] = title[i] + "Vap. P.(Pa) ; "
            elif string.find(code[i], 'Total pressure of probe') != -1 :
                title[i] = title[i] + "Tot. P.(Pa) ; "
            elif string.find(code[i], 'Surface balance') != -1 :
                title[i] = title[i] + "Surf. bal.(W) ; "
            elif string.find(code[i], 'Volume balance') != -1 :
                title[i] = title[i] + "Vol. bal.(W)"
            else:
                title[i] = title[i] + code[i]
                
        # modifier le titre des axes du plot
        text = [None,None]
        for i in range(len(code)):
            text = Qwt.QwtText(title[i])
            text.setFont(QFont(self.fn, 8, QFont.Normal))
            if i == 0:
                self.plot.setAxisTitle(Qwt.QwtPlot.yLeft, text)
            elif i == 1 and isYRightEnabled:
                self.plot.setAxisTitle(Qwt.QwtPlot.yRight, text)
            pass
        
    def ResetScale(self, parent=None): # auto rescale function
        self.plot.setAxisAutoScale(Qwt.QwtPlot.yLeft)
        self.plot.setAxisAutoScale(Qwt.QwtPlot.yRight)
        self.plot.setAxisAutoScale(Qwt.QwtPlot.xBottom)
        self.plot.replot()       
        for zoomer in self.zoomers:
            zoomer.setZoomBase()

    def showTime(self):
        t = datetime.datetime.now()
        now = datetime.datetime.fromtimestamp(time.mktime(t.timetuple()))
        #print now.ctime()
        
    def RefreshListing(self, parent=None):
        if self.tabWidget.currentIndex()==1: # on vient de basculer sur l'onglet full listing
            if os.access(self.case_copy.dirPath + os.sep+str(self.Running_options_form_copy.Ro_Ln_le.text()), os.F_OK):
                listfile=open(self.case_copy.dirPath + os.sep + str(self.Running_options_form_copy.Ro_Ln_le.text()), "r")
                lines=listfile.readlines()
                self.textEdit_2.moveCursor(QtGui.QTextCursor.End, QtGui.QTextCursor.MoveAnchor)
                #monospace
                myCharFormat = QtGui.QTextCharFormat()    
                myCharFormat.setFontFixedPitch(True)
                self.textEdit_2.setCurrentCharFormat(myCharFormat)
                
                i = self.iLastLineListing + 1 # à chaque nouveau calcul (Run Syrthes), self.iLastLineListing devient -1, donc i = 0
                if i == 0 : # nouveau listing -> effacer le contenu de textEdit_2
                    self.textEdit_2.clear()       

                while i < len(lines): # charger les nouvelles lignes de listing
                    lstr = "" # le faire au moins une ligne
                    lstr = lstr + lines[i]
                    i = i + 1    
                    while (i % 2000 != 0) and (i < len(lines)) : # combiner x lignes dans une chaîne pour gagner du temps
                        lstr = lstr + lines[i]
                        i = i + 1
                        
                    self.textEdit_2.insertPlainText(lstr) # "coller" x lignes à la fois dans textEdit_2 pour gagner du temps
                
                self.iLastLineListing = len(lines) - 1 # enregistrer le numéro de la dernière ligne chargée pour ne pas repartir de 0 la prochaine fois
                
                self.textEdit_2.moveCursor(QtGui.QTextCursor.Start, QtGui.QTextCursor.MoveAnchor)
                listfile.close()
        pass
    

    def Screenshot(self, parent=None): # fonction de rappel de la capture d'écran
        self.plot.setStyleSheet("QwtPlot{border : 1px solid grey; padding : 5 5 5 5;}")
        self.originalPixmap=QtGui.QPixmap.grabWidget(self.plot)
        self.plot.setStyleSheet("QwtPlot{border : 0px solid grey; padding : 0 0 0 0;}")
        format= QtCore.QString("png")
        
        screenshotPath = self.lastDir_copy + self.tr(os.sep+"untitled.")+format

        fileName=QtGui.QFileDialog.getSaveFileName(self, self.tr("Save As"),
                            screenshotPath,
                            self.tr("*.%1;;All Files (*)")
                                                   .arg(format))
        if not fileName.isEmpty():
            self.originalPixmap.save(fileName, str(format))
            self.lastDir_copy = str(fileName).rsplit(os.sep, 1)[0] #update lastDir
        self.initSYRTHESFont()
        
    def __printGnuplotDat(self, valueMap,fileName):
 
        towrite = open(fileName, 'w')
        nbTime = len(valueMap["time"])
        line = "time"
        for key in valueMap.keys():
            if key != "time":
                line = line+" "+str(key[0])+"_"+str(key[1]+1)
                pass
            pass
        towrite.write("%s\n"%(line))
        
        for i in range(nbTime):
            line = "%.9e"%(valueMap["time"][i])
            for key in valueMap.keys():
                if key != "time":
                    line = line + " %.9e"%(valueMap[key][1][i])
                    pass
                pass
            towrite.write("%s\n"%(line))
            pass
        towrite.close()
        pass

    def __printGnuplotCmd(self,valueMap, fileName):
        datName = "%s"%(fileName)
        cmdName = fileName.replace(".dat",".gnu")
        # set xlabel "Vitesse"
        # set ylabel "Distance"

        # plot "freinage.dat" using 1:2 title 'sec' with linespoints , \
        #     "freinage.dat" using 1:3 title 'mouille' with linespoints
        # pause -1
        # quit

        towrite = open(cmdName, 'w')
#For your plot use the method "axisScaleDiv(int axisid)", supplying it 
#with the axis you want information from and it returns a pointer to the 
#QwtScaleDiv of the axis.

#Then call lBound() for lower bound and hBound() for higher bound of the 
#QwtScaleDiv.

        line = "set title \"\"\n"
        towrite.write(line)
        line = "set xlabel \"time\"\n"
        yline = ""
        yline2 = ""
        towrite.write(line)
        i = 1

        try: # Windows
            xmin=self.plot.axisScaleDiv(Qwt.QwtPlot.xBottom).lBound()# prise des bornes du graphique
            xmax=self.plot.axisScaleDiv(Qwt.QwtPlot.xBottom).hBound()
            ymin=self.plot.axisScaleDiv(Qwt.QwtPlot.yLeft).lBound()
            ymax=self.plot.axisScaleDiv(Qwt.QwtPlot.yLeft).hBound()
            yrmin=self.plot.axisScaleDiv(Qwt.QwtPlot.yRight).lBound()
            yrmax=self.plot.axisScaleDiv(Qwt.QwtPlot.yRight).hBound()
        except: # Linux
            xmin=self.plot.axisScaleDiv(Qwt.QwtPlot.xBottom).lowerBound()# prise des bornes du graphique
            xmax=self.plot.axisScaleDiv(Qwt.QwtPlot.xBottom).upperBound()
            ymin=self.plot.axisScaleDiv(Qwt.QwtPlot.yLeft).lowerBound()
            ymax=self.plot.axisScaleDiv(Qwt.QwtPlot.yLeft).upperBound()     
            yrmin=self.plot.axisScaleDiv(Qwt.QwtPlot.yRight).lowerBound()
            yrmax=self.plot.axisScaleDiv(Qwt.QwtPlot.yRight).upperBound()            

        line = "set xrange [%.9e:%.9e]\n"%(xmin,xmax)
        line+= "set yrange [%.9e:%.9e]\n"%(ymin,ymax)
        if self.plot.axisEnabled(Qwt.QwtPlot.yRight):
            line+= "set y2range [%.9e:%.9e]\n"%(yrmin,yrmax)
        towrite.write(line)
        # line = "plot [%e:%e][%e:%e] "%(xmin,xmax,ymin,ymax)
        line = "plot "
        scaleline = "set autoscale y\n"
        ticsline = "set ytics nomirror\n"
        for key in valueMap.keys():
            if key != "time":
                i=i+1
                if valueMap[key][0] != "":
                    line = line + "\"" + datName + "\" using 1:"+str(i)+" title '" + valueMap[key][0] + "' with linespoints"
                else:
                    line = line + "\"" + datName + "\" using 1:"+str(i)+" title '" + str(key[0]) + "_" + str(key[1]+1) + "' with linespoints"
                if yline == "" and valueMap[key][2] == Qwt.QwtPlot.yLeft:
                    yline = "set ylabel \"" + key[0] + "\"\n"
                    line = line + " axes x1y1"
                    pass
                elif yline2 == "" and valueMap[key][2] == Qwt.QwtPlot.yRight:
                    yline2 = "set y2label \"" + key[0] + "\"\n"
                    line = line + " axes x2y2"
                    scaleline = scaleline + "set autoscale y2\n"
                    ticsline = ticsline + "set y2tics\n"
                if i-1 != len(valueMap.keys())-1:
                    line = line + ','
                pass
            pass
        towrite.write(yline)
        towrite.write(yline2)
        towrite.write(ticsline)
        towrite.write("set grid\n")
        towrite.write(scaleline)
        towrite.write(line+"\n")
        towrite.write("pause -1\n")
        towrite.write("quit\n")
        towrite.close()
        pass

    def Gnuplot(self, parent=None): # fonction de rappel de creation des fichiers gnuplots
        self.plot.setStyleSheet("QwtPlot{border : 1px solid grey; padding : 5 5 5 5;}")
        self.originalPixmap=QtGui.QPixmap.grabWidget(self.plot)
        self.plot.setStyleSheet("QwtPlot{border : 0px solid grey; padding : 0 0 0 0;}")
        format= QtCore.QString("dat")

        toGnuplot = {}

        # print "----------après-----------"
        # for (j,i) in self.curves.keys():
        #     if self.curves[j,i].tabIndexLinked+1:
        #         print "courbe", j, i+1, "appartenant à l'onglet n°", self.curves[j,i].tabIndexLinked+1

        for i in range(len(self.tabPlot.tabs)):
            if self.tabPlot.curveIndexLinked[i][0]+1 and self.tabPlot.curveIndexLinked[i][1]+1:
                u = self.tabPlot.curveIndexLinked[i][0]
                v = self.tabPlot.curveIndexLinked[i][1]
                # print "tab n°", i+1, "contient la courbe n°", u , v
                # print self.curves[u,v].valueMap.keys()
                name = str(self.Cb_Vars[i].currentText())
                # print self.curves[u,v].valueMap[name]
                toGnuplot[name,v] = self.curves[u,v].legend,self.curves[u,v].valueMap[name],self.curves[u,v].yAxis()
                pass
            pass

        if toGnuplot.keys():
            toGnuplot["time"] =  self.curves[u,v].valueMap["time"]
        else:
            return

        # print "--------------------------"
        pass


        screenshotPath = self.lastDir_copy + self.tr(os.sep+"untitled.")+format

        fileName=QtGui.QFileDialog.getSaveFileName(self, self.tr("Save As"),
                            screenshotPath,
                            self.tr("*.%1;;All Files (*)")
                                                   .arg(format))
        if not fileName.isEmpty():
            self.__printGnuplotDat(toGnuplot,fileName)            
            self.__printGnuplotCmd(toGnuplot,fileName)
            #self.originalPixmap.save(fileName, str(format))
            self.lastDir_copy = str(fileName).rsplit(os.sep, 1)[0] #update lastDir
        self.initSYRTHESFont()

        
    def wheel_event(self, event): # fonction de rappel prennant en compte les évènement de la roulette de la souris dans la fenêtre de suivis de calcul afin de faire le zoom
        pos=event.pos()
        delta=event.delta() # 15°-step-mousewheel --> delta = 15*8 =  120. Attention finer step on modern mouse will cause problem
        if delta>0:
            delta=delta/100
        else:
            delta=abs(delta)/150
        self.Mag.rescale(delta) # parameter of rescale : >1 zoom in ; <1 zoomout
        event.ignore()

    def grab_mouse(self, event): # fonction de rappel faisant appel au coordonnée de la souris pendant son déplacement pour faire glisser le graphique
        if event.buttons() & Qt.Qt.MidButton:
            if self.xposold==None or self.yposold==None: # Si il n'y a pas de coordonée précédente on prend les coordonnées actuelles
                self.xposold=event.x()
                self.yposold=event.y()
                
            xpos=event.x()# prise des coordonnées actuelles
            ypos=event.y()
            try: # Windows
                xmin=self.plot.axisScaleDiv(Qwt.QwtPlot.xBottom).lBound()# prise des bornes du graphique
                xmax=self.plot.axisScaleDiv(Qwt.QwtPlot.xBottom).hBound()
                ymin=self.plot.axisScaleDiv(Qwt.QwtPlot.yLeft).lBound()
                ymax=self.plot.axisScaleDiv(Qwt.QwtPlot.yLeft).hBound()
                yrmin=self.plot.axisScaleDiv(Qwt.QwtPlot.yRight).lBound()
                yrmax=self.plot.axisScaleDiv(Qwt.QwtPlot.yRight).hBound()
            except: # Linux
                xmin=self.plot.axisScaleDiv(Qwt.QwtPlot.xBottom).lowerBound()# prise des bornes du graphique
                xmax=self.plot.axisScaleDiv(Qwt.QwtPlot.xBottom).upperBound()
                ymin=self.plot.axisScaleDiv(Qwt.QwtPlot.yLeft).lowerBound()
                ymax=self.plot.axisScaleDiv(Qwt.QwtPlot.yLeft).upperBound()     
                yrmin=self.plot.axisScaleDiv(Qwt.QwtPlot.yRight).lowerBound()
                yrmax=self.plot.axisScaleDiv(Qwt.QwtPlot.yRight).upperBound()            
                factor=abs(float(xmax-xmin)/float(ymax-ymin)) # prise du ratio longueur largeur du graphique
                
            wp = self.plot.width() #plot width
            hp = self.plot.height() #plot height
            deltax = -float((xpos - self.xposold))/wp*(xmax - xmin)
            deltay = float((ypos - self.yposold))/hp*(ymax - ymin)
            deltayr = float((ypos - self.yposold))/hp*(yrmax - yrmin)
            self.plot.setAxisScale(Qwt.QwtPlot.xBottom, xmin+deltax, xmax+deltax, 0) # mise à jour de l'échelle des axes du graphique
            self.plot.setAxisScale(Qwt.QwtPlot.yLeft, ymin+deltay, ymax+deltay, 0)
            if self.plot.axisEnabled(Qwt.QwtPlot.yRight):
                self.plot.setAxisScale(Qwt.QwtPlot.yRight,yrmin+deltayr, yrmax+deltayr, 0)
            self.plot.replot() # mise à jour du graphique    
            self.xposold=xpos # enregistrement des positions actuels dans les positions anciennes
            self.yposold=ypos
            pass
        pass
        
    def raz_mouses(self, event): # fonction de remise à zéro des coordonnées précédente 
        self.xposold=None
        self.yposold=None
        
    def initSYRTHESFont(self):
        # (re)set font for the application
        return
	if not syrthesIHMContext.isEmbedded() :
            return
            myFont= app.font()
            myFont.setFamily('Sans')
            myFont.setStyleHint(QFont.SansSerif, QFont.PreferMatch)
            myFont.setPointSize(10)
            app.setFont(myFont)
        
class clCurve(Qwt.QwtPlotCurve):
    def __init__(self, legend="", parent=None):
        Qwt.QwtPlotCurve.__init__(self, legend)
        self.legend = legend
        self.valueMap = {}
        self.Time = []
        self.Temper = []
        self.vP = [] # vapor pressure
        self.taP = [] # total air pressure
        self.tabIndexLinked = -1
        self.pen = Qt.QPen(Qt.Qt.green)
        self.pen.setWidth(2)
        self.color = Qt.Qt.black
        
        # coordonnées de la sonde
        self.dimension = -1
        self.x = ""
        self.y = ""
        self.z = ""
    
    def setColor(self, color):        
        self.color = color
        self.pen.setColor(color)
        self.setPen(self.pen)
        
        
    def setStyle(self, style):           
        styles = [None, Qt.Qt.SolidLine, Qt.Qt.DashLine, Qt.Qt.DotLine, Qt.Qt.DashDotLine]
        self.pen.setStyle(styles[style])
        self.setPen(self.pen)
        
    def printProbe(self):
        if self.dimension == 3 :
            return '[' + str(self.x) + ";" + str(self.y) + ";" + str(self.z) + ']'
        else:
            return '[' + str(self.x) + ";" + str(self.y) + ']'

    def refreshCurve(self, name):
        self.setData(self.valueMap["time"],self.valueMap[name])

    def razData(self):
        self.valueMap={}
        self.setData([], [])
        
    #Time = property(_getTime, _setTime)
    #Temper = property(_getTemper, _setTemper)