CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes | Static Public Attributes
svgfig.Grid Class Reference
Inheritance diagram for svgfig.Grid:
svgfig.Ticks

Public Member Functions

def __init__ (self, xmin, xmax, ymin, ymax, ticks=-10, miniticks=False, logbase=None, mini_attr={}, attr)
 
def __repr__ (self)
 
def SVG (self, trans=None)
 
- Public Member Functions inherited from svgfig.Ticks
def __init__ (self, f, low, high, ticks=-10, miniticks=True, labels=True, logbase=None, arrow_start=None, arrow_end=None, text_attr={}, attr)
 
def __repr__ (self)
 
def compute_logminiticks (self, base)
 
def compute_logticks (self, base, N, format)
 
def compute_miniticks (self, original_ticks)
 
def compute_ticks (self, N, format)
 
def interpret (self)
 
def orient_tickmark (self, t, trans=None)
 
def regular_miniticks (self, N)
 
def SVG (self, trans=None)
 

Public Attributes

 attr
 
 high
 
 last_xminiticks
 
 last_yminiticks
 
 mini_attr
 
 xmax
 
 ymax
 
- Public Attributes inherited from svgfig.Ticks
 arrow_end
 
 arrow_start
 
 attr
 
 f
 
 high
 
 labels
 
 last_miniticks
 
 logbase
 
 low
 
 miniticks
 
 text_attr
 
 ticks
 

Static Public Attributes

dictionary defaults = {"stroke-width":"0.25pt", "stroke":"gray"}
 
dictionary mini_defaults = {"stroke-width":"0.25pt", "stroke":"lightgray", "stroke-dasharray":"1,1"}
 
- Static Public Attributes inherited from svgfig.Ticks
dictionary defaults = {"stroke-width":"0.25pt"}
 
float minitick_end = 0.75
 
float minitick_start = -0.75
 
int text_angle = 0
 
dictionary text_defaults = {"stroke":"none", "fill":"black", "font-size":5}
 
float text_start = 2.5
 
float tick_end = 1.5
 
float tick_start = -1.5
 

Detailed Description

Draws a grid over a specified region using the standard tick
specification (see help(Ticks)) to place the grid lines.

Grid(xmin, xmax, ymin, ymax, ticks, miniticks, logbase, mini_attr, attribute=value)

xmin, xmax              required        the x range
ymin, ymax              required        the y range
ticks                   default=-10     request ticks according to the standard
                                        tick specification (see help(Ticks))
miniticks               default=False   request miniticks according to the
                                        standard minitick specification
logbase                 default=None    if a number, the axis is logarithmic
                                        with ticks at the given base (usually 10)
mini_attr               default={}      SVG attributes for the minitick-lines
                                        (if miniticks != False)
attribute=value pairs   keyword list    SVG attributes for the major tick lines

Definition at line 3222 of file svgfig.py.

Constructor & Destructor Documentation

def svgfig.Grid.__init__ (   self,
  xmin,
  xmax,
  ymin,
  ymax,
  ticks = -10,
  miniticks = False,
  logbase = None,
  mini_attr = {},
  attr 
)

Definition at line 3246 of file svgfig.py.

3246  def __init__(self, xmin, xmax, ymin, ymax, ticks=-10, miniticks=False, logbase=None, mini_attr={}, **attr):
3247  self.xmin, self.xmax = xmin, xmax
3248  self.ymin, self.ymax = ymin, ymax
3249 
3251  self.mini_attr.update(mini_attr)
3252 
3253  Ticks.__init__(self, None, None, None, ticks, miniticks, None, logbase)
3254 
3255  self.attr = dict(self.defaults)
3256  self.attr.update(attr)
3257 
dictionary defaults
Definition: svgfig.py:2379
dictionary mini_defaults
Definition: svgfig.py:3241
def __init__(self, xmin, xmax, ymin, ymax, ticks=-10, miniticks=False, logbase=None, mini_attr={}, attr)
Definition: svgfig.py:3246

Member Function Documentation

def svgfig.Grid.__repr__ (   self)

Definition at line 3243 of file svgfig.py.

References svgfig.SVG.attr, svgfig.Path.attr, svgfig.Curve.attr, svgfig.Poly.attr, svgfig.Text.attr, svgfig.TextGlobal.attr, svgfig.Dots.attr, svgfig.Line.attr, svgfig.LineGlobal.attr, svgfig.VLine.attr, svgfig.HLine.attr, svgfig.Rect.attr, svgfig.Ellipse.attr, svgfig.Ticks.attr, svgfig.Ticks.miniticks, harvestTrackValidationPlots.str, svgfig.Ticks.ticks, svgfig.Axes.xmax, svgfig.HGrid.xmax, svgfig.Grid.xmax, TriggerDQMBase::MEbinning.xmin, fftjetcms::LookupTable2d.xmin(), AbsHcalFunctor.xmin(), PixelClusterizerBase::AccretionCluster.xmin, MEbinning.xmin, MEPSet.xmin, HcalLinearCompositionFunctor.xmin(), HcalChebyshevFunctor.xmin(), HcalCubicInterpolator.xmin(), HcalInterpolatedTableFunctor.xmin(), HcalPolynomialFunctor.xmin(), ClusterizingHistogram.xmin, HcalPiecewiseLinearFunctor.xmin(), SummationStep.xmin, BremsstrahlungSimulator.xmin, JetMonitor::MEbinning.xmin, METMonitor::MEbinning.xmin, HTMonitor::MEHTbinning.xmin, GammaFunctionGenerator.xmin, fftjetcms::LinInterpolatedTable1D.xmin(), MuonBremsstrahlungSimulator.xmin, BaseNumericalRandomGenerator.xmin, NoBPTXMonitor::NoBPTXbinning.xmin, HLTObjectsMonitor::MEbinning.xmin, cscdqm::AddressBox.xmin, TrackerMap.xmin, svgfig.Plot.ymax, svgfig.Frame.ymax, svgfig.Axes.ymax, svgfig.VGrid.ymax, svgfig.Grid.ymax, fftjetcms::LookupTable2d.ymin(), PixelClusterizerBase::AccretionCluster.ymin, Exhume::Event.ymin, cscdqm::AddressBox.ymin, and TrackerMap.ymin.

Referenced by data_sources.json_file.__str__().

3243  def __repr__(self):
3244  return "<Grid x=(%g, %g) y=(%g, %g) ticks=%s miniticks=%s %s>" % (self.xmin, self.xmax, self.ymin, self.ymax, str(self.ticks), str(self.miniticks), self.attr)
3245 
def __repr__(self)
Definition: svgfig.py:3243
def svgfig.Grid.SVG (   self,
  trans = None 
)
Apply the transformation "trans" and return an SVG object.

Definition at line 3258 of file svgfig.py.

3258  def SVG(self, trans=None):
3259  """Apply the transformation "trans" and return an SVG object."""
3260  self.low, self.high = self.xmin, self.xmax
3261  self.last_xticks, self.last_xminiticks = Ticks.interpret(self)
3262  self.low, self.high = self.ymin, self.ymax
3263  self.last_yticks, self.last_yminiticks = Ticks.interpret(self)
3264 
3265  ticksd = []
3266  for t in self.last_xticks.keys():
3267  ticksd += Line(t, self.ymin, t, self.ymax).Path(trans).d
3268  for t in self.last_yticks.keys():
3269  ticksd += Line(self.xmin, t, self.xmax, t).Path(trans).d
3270 
3271  miniticksd = []
3272  for t in self.last_xminiticks:
3273  miniticksd += Line(t, self.ymin, t, self.ymax).Path(trans).d
3274  for t in self.last_yminiticks:
3275  miniticksd += Line(self.xmin, t, self.xmax, t).Path(trans).d
3276 
3277  return SVG("g", Path(d=ticksd, **self.attr).SVG(), Path(d=miniticksd, **self.mini_attr).SVG())
3278 
def SVG(self, trans=None)
Definition: svgfig.py:3258

Member Data Documentation

svgfig.Grid.attr

Definition at line 3255 of file svgfig.py.

Referenced by svgfig.XErrorBars.SVG(), and svgfig.YErrorBars.SVG().

dictionary svgfig.Grid.defaults = {"stroke-width":"0.25pt", "stroke":"gray"}
static

Definition at line 3240 of file svgfig.py.

Referenced by tree.Tree.reset(), and tree.Tree.var().

svgfig.Grid.high

Definition at line 3260 of file svgfig.py.

svgfig.Grid.last_xminiticks

Definition at line 3261 of file svgfig.py.

svgfig.Grid.last_yminiticks

Definition at line 3263 of file svgfig.py.

svgfig.Grid.mini_attr

Definition at line 3250 of file svgfig.py.

dictionary svgfig.Grid.mini_defaults = {"stroke-width":"0.25pt", "stroke":"lightgray", "stroke-dasharray":"1,1"}
static

Definition at line 3241 of file svgfig.py.

svgfig.Grid.xmax

Definition at line 3247 of file svgfig.py.

Referenced by svgfig.XAxis.__repr__(), and svgfig.Grid.__repr__().

svgfig.Grid.ymax

Definition at line 3248 of file svgfig.py.

Referenced by svgfig.YAxis.__repr__(), and svgfig.Grid.__repr__().