Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
ICBM
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
detectors
DSSC
ICBM
Commits
f4807d4b
Commit
f4807d4b
authored
1 month ago
by
Cyril Danilevski
Browse files
Options
Downloads
Patches
Plain Diff
Add channels for all 4 modules in DEPFET quadrant
parent
eb2be556
No related branches found
No related tags found
1 merge request
!4
Add channels for all 4 modules in DEPFET quadrant
Pipeline
#165023
passed
1 month ago
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
powerproc.cpp
+40
-10
40 additions, 10 deletions
powerproc.cpp
with
40 additions
and
10 deletions
powerproc.cpp
+
40
−
10
View file @
f4807d4b
...
...
@@ -8,25 +8,55 @@ PowerProcedure::PowerProcedure(const IPAddress& ipAddr)
stages
[
0
].
name
=
"ASICS"
;
stages
[
0
].
type
=
SWITCH
;
stages
[
0
].
size
=
9
;
stages
[
0
].
channels
=
new
int
[
stages
[
0
].
size
]{
508
,
708
,
502
,
503
,
504
,
501
,
507
,
607
,
608
};
stages
[
0
].
size
=
15
;
stages
[
0
].
channels
=
new
int
[
stages
[
0
].
size
]{
508
,
708
,
// MBJT
503
,
504
,
// AM, RB
502
,
506
,
602
,
606
,
// RB
501
,
505
,
601
,
605
,
// IOB
507
,
607
,
608
// IOBA
};
stages
[
1
].
name
=
"HV"
;
stages
[
1
].
type
=
SWITCH
;
stages
[
1
].
size
=
10
;
stages
[
1
].
channels
=
new
int
[
stages
[
1
].
size
]{
1
,
2
,
101
,
103
,
102
,
104
,
105
,
106
,
107
,
108
};
stages
[
1
].
size
=
40
;
stages
[
1
].
channels
=
new
int
[
stages
[
1
].
size
]{
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
// IS
101
,
103
,
102
,
104
,
// M1 RING1
113
,
114
,
115
,
116
,
// M2 RING1
213
,
214
,
215
,
216
,
// M3 RING1
201
,
203
,
202
,
204
,
// M4 RING1
105
,
106
,
107
,
108
,
// M1 BACK
109
,
110
,
111
,
112
,
// M2 BACK
209
,
210
,
211
,
212
,
// M3 BACK
205
,
206
,
207
,
208
,
// M4 BACK
};
stages
[
2
].
name
=
"ISVOLTAGE"
;
stages
[
2
].
type
=
VOLTAGE
;
stages
[
2
].
size
=
2
;
stages
[
2
].
channels
=
new
int
[
stages
[
2
].
size
]{
1
,
2
};
stages
[
2
].
onValue
=
new
float
[
stages
[
2
].
size
]{
10
,
10
};
stages
[
2
].
offValue
=
new
float
[
stages
[
2
].
size
]{
2.5
,
2.5
};
stages
[
2
].
size
=
8
;
stages
[
2
].
channels
=
new
int
[
stages
[
2
].
size
]{
1
,
2
,
// M1
3
,
4
,
// M2
5
,
6
,
// M3
7
,
8
// M4
};
stages
[
2
].
onValue
=
new
float
[
stages
[
2
].
size
]{
10
,
10
,
10
,
10
,
10
,
10
,
10
,
10
};
stages
[
2
].
offValue
=
new
float
[
stages
[
2
].
size
]{
2.5
,
2.5
,
2.5
,
2.5
,
2.5
,
2.5
,
2.5
,
2.5
};
stages
[
3
].
name
=
"PLCSOURCE"
;
stages
[
3
].
type
=
SWITCH
;
stages
[
3
].
size
=
9
;
stages
[
3
].
channels
=
new
int
[
stages
[
3
].
size
]{
701
,
801
,
802
,
803
,
804
,
301
,
302
,
303
,
304
};
stages
[
3
].
size
=
36
;
stages
[
3
].
channels
=
new
int
[
stages
[
3
].
size
]{
701
,
801
,
802
,
803
,
804
,
// M1 PLC
702
,
805
,
806
,
807
,
808
,
// M2 PLC
703
,
901
,
902
,
903
,
904
,
// M3 PLC
704
,
905
,
906
,
907
,
908
,
// M4 PLC
301
,
302
,
303
,
304
,
// M1 SG
305
,
306
,
307
,
308
,
// M2 SG
401
,
402
,
403
,
404
,
// M3 SG
405
,
406
,
407
,
408
,
// M4 SG
};
}
PowerProcedure
::~
PowerProcedure
()
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment