File: ref_typescope.cdl

package info (click to toggle)
netcdf-parallel 1%3A4.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 101,668 kB
  • sloc: ansic: 200,241; sh: 10,807; yacc: 2,522; makefile: 1,306; lex: 1,153; xml: 173; awk: 2
file content (45 lines) | stat: -rw-r--r-- 602 bytes parent folder | download | duplicates (9)
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
netcdf ref_typescope {

group: f {
types:
  opaque(3) op_t1;
} // group f

group: g {
  types:
    opaque(4) op_t2 ;
  variables:
      op_t1 v1 ; // use /f/op_t1
  data:

   v1 = 0X000000  ;

  group: h {
    types:
      opaque(4) op_t3 ;
    variables:
      op_t2 v2 ; // use /g/op_t2
    data:

     v2 = 0X00000000 ;
  } // group h

  group: i {
    types:
      opaque(4) op_t2 ;
    variables:
      op_t3 v2 ; // use /g/h/op_t3
    data:

     v2 = 0X00000000 ;
  } // group i
} // group g

group: j {
  variables:
    op_t3 v2 ; // use /g/h/op_t3
  data:

   v2 = 0X00000000 ;
} // group j
}