Ignore:
Timestamp:
04/21/12 09:22:28 (13 years ago)
Author:
neise
Message:
coordinator has now the x,y coordinates as members x and y
File:
1 edited

Legend:

Unmodified
Added
Removed
  • fact/tools/pyscripts/pyfact/plotters.py

    r13174 r13402  
    116116        chid, y,x,xe,ye,yh,xh,softid,hardid = np.loadtxt(map_file_path ,unpack=True)
    117117        self.xe = xe
    118         self.ye = ye
     118        # -ye in order to correct for the sign difference between my mapping file
     119        # and FACTmap111030.txt
     120        self.ye = -ye
    119121
    120122        self.H = (6,0,30./180.*3.1415926)
     
    199201                self.ax.grid(grid)
    200202                # the next line is a stupid hack
    201                 # I plot invisible pixels, so that the axes show look ok.
     203                # I plot invisible pixels, so that the axes look ok.
    202204                # this must be possible differently, but I don't know how...
    203205                self.ax.scatter(xe,ye,s=25,alpha=0,marker=H)
Note: See TracChangeset for help on using the changeset viewer.