Please enable JavaScript to use RhodeCode Enterprise
##// END OF EJS Templates
José Chávez
- Mon, 28 Aug 2017 17:23:31
Show More
0
.vscode/c_cpp_properties.json
.vscode/c_cpp_properties.json
created
644
+69
0
@@
-0,0
+1,69
1
{
2
"configurations" : [
3
{
4
"name" : "Mac" ,
5
"includePath" : [
6
"/usr/include" ,
7
"/usr/local/include" ,
8
"${workspaceRoot}"
9
],
10
"defines" : [],
11
"intelliSenseMode" : "clang-x64" ,
12
"browse" : {
13
"path" : [
14
"/usr/include" ,
15
"/usr/local/include" ,
16
"${workspaceRoot}"
17
],
18
"limitSymbolsToIncludedHeaders" : true ,
19
"databaseFilename" : ""
20
}
21
},
22
{
23
"name" : "Linux" ,
24
"includePath" : [
25
"/usr/include/c++/4.8.4" ,
26
"/usr/include/x86_64-linux-gnu/c++/4.8" ,
27
"/usr/local/include" ,
28
"/usr/include" ,
29
"/usr/include/x86_64-linux-gnu" ,
30
"${workspaceRoot}"
31
],
32
"defines" : [],
33
"intelliSenseMode" : "clang-x64" ,
34
"browse" : {
35
"path" : [
36
"/usr/include/c++/4.8.4" ,
37
"/usr/include/x86_64-linux-gnu/c++/4.8" ,
38
"/usr/local/include" ,
39
"/usr/include" ,
40
"/usr/include/x86_64-linux-gnu" ,
41
"${workspaceRoot}"
42
],
43
"limitSymbolsToIncludedHeaders" : true ,
44
"databaseFilename" : ""
45
}
46
},
47
{
48
"name" : "Win32" ,
49
"includePath" : [
50
"C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/include" ,
51
"${workspaceRoot}"
52
],
53
"defines" : [
54
"_DEBUG" ,
55
"UNICODE"
56
],
57
"intelliSenseMode" : "msvc-x64" ,
58
"browse" : {
59
"path" : [
60
"C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/include/*" ,
61
"${workspaceRoot}"
62
],
63
"limitSymbolsToIncludedHeaders" : true ,
64
"databaseFilename" : ""
65
}
66
}
67
],
68
"version" : 2
69
}
No newline at end of file
0
.vscode/settings.json
.vscode/settings.json
created
644
+7
0
@@
-0,0
+1,7
1
{
2
"files.associations" : {
3
"arrayobject.h" : "c" ,
4
"ndarrayobject.h" : "c" ,
5
"complex" : "c"
6
}
7
}
No newline at end of file
0
.gitignore
.gitignore
+9
0
@@
-100,6
+100,7
ENV/
100
# eclipse
100
# eclipse
101
.project
101
.project
102
.pydevproject
102
.pydevproject
103
<<<<<<< HEAD
103
104
104
# vscode
105
# vscode
105
106
@@
-107,3
+108,11
ENV/
107
108
108
schainpy/scripts/
109
schainpy/scripts/
109
schaingui/node_modules/
110
schaingui/node_modules/
111
=======
112
.svn/
113
*.png
114
*.pyc
115
schainpy/scripts
116
117
schaingui/node_modules
118
>>>>>>> master
0
README.md
README.md
0
0
1
NO CONTENT: modified file
NO CONTENT: modified file
0
schainpy/controller.py
schainpy/controller.py
+1
-1
@@
-714,7
+714,7
class ProcUnitConf():
714
sts = self . procUnitObj . call ( opType = opConfObj . type ,
714
sts = self . procUnitObj . call ( opType = opConfObj . type ,
715
opName = opConfObj . name ,
715
opName = opConfObj . name ,
716
opId = opConfObj . id ,
716
opId = opConfObj . id ,
717
)
717
** kwargs )
718
718
719
# total_time = time.time() - ini
719
# total_time = time.time() - ini
720
#
720
#
0
schainpy/controller_api.py
schainpy/controller_api.py
+1
-1
@@
-90,7
+90,7
class ControllerThread(threading.Thread, Project):
90
continue
90
continue
91
91
92
if thisOpObj . name in plotterList :
92
if thisOpObj . name in plotterList :
93
thisOpObj . type = "plotter"
93
thisOpObj . type = "oth er"
94
94
95
def setPlotterQueue ( self , plotter_queue ):
95
def setPlotterQueue ( self , plotter_queue ):
96
96
0
schainpy/model/graphics/jroplotter.py
schainpy/model/graphics/jroplotter.py
0
0
1
NO CONTENT: modified file
NO CONTENT: modified file
0
schainpy/model/io/jroIO_base.py
schainpy/model/io/jroIO_base.py
0
0
1
NO CONTENT: modified file
NO CONTENT: modified file
0
schainpy/model/utils/jroutils_ftp.py
schainpy/model/utils/jroutils_ftp.py
+4
-2
@@
-638,18
+638,20
class SendToServer(ProcessingUnit):
638
return fullfilenameList
638
return fullfilenameList
639
639
640
def run ( self , ** kwargs ):
640
def run ( self , ** kwargs ):
641
642
if not self . isConfig :
641
if not self . isConfig :
643
self . init = time . time ()
642
self . init = time . time ()
644
self . setup ( ** kwargs )
643
self . setup ( ** kwargs )
645
self . isConfig = True
644
self . isConfig = True
646
645
646
if not self . clientObj . is_alive ():
647
print "[Remote Server]: Restarting connection "
648
self . setup ( ** kwargs )
649
647
if time . time () - self . init >= self . period :
650
if time . time () - self . init >= self . period :
648
fullfilenameList = self . findFiles ()
651
fullfilenameList = self . findFiles ()
649
652
650
if self . clientObj . updateFileList ( fullfilenameList ):
653
if self . clientObj . updateFileList ( fullfilenameList ):
651
print "[Remote Server]: Sending the next files " , str ( fullfilenameList )
654
print "[Remote Server]: Sending the next files " , str ( fullfilenameList )
652
653
self . init = time . time ()
655
self . init = time . time ()
654
656
655
def close ( self ):
657
def close ( self ):
0
schainpy/scripts/optimun_offset.py
schainpy/scripts/optimun_offset.py
+4
0
@@
-93,7
+93,11
def filterOffsets(offsets0, stdvLimit):
93
93
94
#---------------------- Setup ---------------------------
94
#---------------------- Setup ---------------------------
95
95
96
<<<<<<< HEAD
96
path = '/home/nanosat/Pictures/JASMET30_mp/201608/phase'
97
path = '/home/nanosat/Pictures/JASMET30_mp/201608/phase'
98
=======
99
path = '/home/jespinoza/Pictures/JASMET30/201608/phase'
100
>>>>>>> master
97
stdvLimit = 0.5
101
stdvLimit = 0.5
98
102
99
#---------------------- Script ---------------------------
103
#---------------------- Script ---------------------------
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
g 0-9
Goto bookmarked items from 0-9
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository access permissions settings
t s
Toggle sidebar on some pages