source: fact/tools/pyscripts/sandbox/dneise/test_CamPlotter.py@ 14788

Last change on this file since 14788 was 13414, checked in by neise, 12 years ago
ready
  • Property svn:executable set to *
File size: 239 bytes
Line 
1#!/usr/bin/python -tti
2
3from plotters import CamPlotter
4import numpy as np
5
6p = CamPlotter('FACT Cam .. each 9th Pixel is highlighted')
7
8niners = np.zeros( 1440)
9for i in range(1440):
10 if (i+1)%9==0:
11 niners[i]=1
12
13p(niners)
14
Note: See TracBrowser for help on using the repository browser.