source:
fact/tools/pyscripts/sandbox/dneise/test_CamPlotter.py@
16858
Last change on this file since 16858 was 13414, checked in by , 13 years ago | |
---|---|
|
|
File size: 239 bytes |
Line | |
---|---|
1 | #!/usr/bin/python -tti |
2 | |
3 | from plotters import CamPlotter |
4 | import numpy as np |
5 | |
6 | p = CamPlotter('FACT Cam .. each 9th Pixel is highlighted') |
7 | |
8 | niners = np.zeros( 1440) |
9 | for i in range(1440): |
10 | if (i+1)%9==0: |
11 | niners[i]=1 |
12 | |
13 | p(niners) |
14 |
Note:
See TracBrowser
for help on using the repository browser.