![]() |
![]() |
Classes | |
class | ConnectionDirection |
class | CornerType |
class | DrawOrientation |
Public Member Functions | |
def | __init__ (self, workspace, sourcePoint, targetPoint) |
def | belongsToRoute (self, point) |
def | betweenTwoPoints (self, point, first, second) |
def | bottomRight (self) |
def | calculateRoute (self) |
def | connectionDirectionString (self, dir) |
def | cornerIsDefined (self, type) |
def | cornerTypeString (self, type) |
def | delete (self) |
def | dragReferencePoint (self) |
def | draw (self) |
def | drawCorner (self, painter, position, cornerType, maxRadius=None) |
def | drawLineSection (self, painter, firstP, secondP, firstCorner, secondCorner) |
def | drawSection (self, painter, sectionIndex) |
def | drawStraightLine (self, painter, firstP, secondP) |
def | forceRouteRecalculation (self) |
def | getCornerType (self, lastDirection, thisDirection) |
def | getPointByDistance (self, start, distance, direction) |
def | getPointToPointDirection (self, lastP, thisP) |
def | getRectBetweenTwoPoints (self, firstP, secondP, firstCorner=CornerType.UNDEFINED, secondCorner=CornerType.UNDEFINED) |
def | isDeletable (self) |
def | isSelectable (self) |
def | isSelected (self) |
def | keyPressEvent (self, event) |
def | mousePressEvent (self, event) |
def | nextPointByDistance (self, route, distance, direction) |
def | nextPointByTarget (self, route, target, orientation) |
def | paintEvent (self, event) |
def | routeChanged (self) |
def | routeIsValid (self) |
def | select (self, sel=True, multiSelect=False) |
def | setDeletable (self, sel) |
def | setDragReferencePoint (self, pos) |
def | setSelectable (self, sel) |
def | setSourceDirection (self, dir) |
def | setTargetDirection (self, dir) |
def | setType (self, type) |
def | setZoom (self, zoom) |
def | sourceDirection (self) |
def | sourcePoint (self) |
def | targetDirection (self) |
def | targetPoint (self) |
def | topLeft (self) |
def | updateConnection (self) |
def | updateTargetPoint (self, point) |
![]() | |
def | __init__ (self, parent=None) |
def | exportImage (self, filename=None) |
def | setZoom (self, zoom) |
![]() | |
def | __init__ (self) |
def | decrementZoom (self) |
def | incrementZoom (self) |
def | setZoom (self, zoom) |
def | zoom (self) |
def | zoomFactor (self) |
Private Attributes | |
_deletableFlag | |
_deletedFlag | |
_dragReferencePoint | |
_recalculateRouteFlag | |
_route | |
_selectableFlag | |
_selectedFlag | |
_sourceDirection | |
_sourcePoint | |
_targetDirection | |
_targetPoint | |
_type | |
Visualizes a connection between two points. There are several types of connections available (see setType()): ORTHOGONAL - Start and end points are connected by a set of horizontal and vertical lines (default). STRAIGHT - Start and end points are connected by a straight line. DIAGONAL - Start and end points are connected by a set of three diagonal lines with different angles.
Definition at line 10 of file PortConnection.py.
def Vispa.Gui.PortConnection.PointToPointConnection.__init__ | ( | self, | |
workspace, | |||
sourcePoint, | |||
targetPoint | |||
) |
Definition at line 49 of file PortConnection.py.
def Vispa.Gui.PortConnection.PointToPointConnection.belongsToRoute | ( | self, | |
point | |||
) |
Checks whether 'point' is part of the connection. 'point' has to be in coordinates of self.drawPanel.
Definition at line 226 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection._route, edm.contains(), Vispa.Gui.PortConnection.PointToPointConnection.getRectBetweenTwoPoints(), and Vispa.Gui.PortConnection.PointToPointConnection.routeIsValid().
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.mousePressEvent().
def Vispa.Gui.PortConnection.PointToPointConnection.betweenTwoPoints | ( | self, | |
point, | |||
first, | |||
second | |||
) |
Checks whether 'point' lies between 'first' and 'second'. This function can currently (08-11-15) only deal with horizontal and vertical distances.
Definition at line 185 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection.getPointToPointDirection(), and Vispa.Gui.Zoomable.Zoomable.zoomFactor().
def Vispa.Gui.PortConnection.PointToPointConnection.bottomRight | ( | self | ) |
Places a rectangle around the route and returns the bottom-right point in parent's coordinates.
Definition at line 775 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection._route, Vispa.Gui.PortConnection.PointToPointConnection.routeIsValid(), and Vispa.Gui.Zoomable.Zoomable.zoomFactor().
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.updateConnection().
def Vispa.Gui.PortConnection.PointToPointConnection.calculateRoute | ( | self | ) |
Calculates the route and stores all route points in internal list. If start and end points have not changed since last last calculation, the route wont be recalculated unless forceRouteRecalculation() was called before. If route was recalculated function returns True otherwise False.
Definition at line 290 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection._recalculateRouteFlag, Vispa.Gui.PortConnection.PointToPointConnection._route, PGeometricDet::Item._type, python.Handle._type, HistoParams< T >._type, hcaldqm::quantity::DetectorQuantity._type, Vispa.Gui.PortConnection.PointToPointConnection._type, MELaserPrim._type, hcaldqm::quantity::TrigTowerQuantity._type, RPCCompDetId._type, HistoParams< TH2F >._type, TrackerGeometryCompare._type, HistoParams< TProfile2D >._type, hcaldqm::quantity::ElectronicsQuantity._type, hcaldqm::quantity::ValueQuantity._type, funct.abs(), Vispa.Gui.PortConnection.PointToPointConnection.getPointByDistance(), Vispa.Gui.PortConnection.PointToPointConnection.nextPointByDistance(), Vispa.Gui.PortConnection.PointToPointConnection.nextPointByTarget(), Vispa.Gui.PortConnection.PointToPointConnection.sourceDirection(), Vispa.Gui.PortConnection.PointToPointConnection.sourcePoint(), Vispa.Gui.PortConnection.PointToPointConnection.targetDirection(), Vispa.Gui.PortConnection.PointToPointConnection.targetPoint(), and Vispa.Gui.Zoomable.Zoomable.zoomFactor().
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.draw(), and Vispa.Gui.PortConnection.PointToPointConnection.updateConnection().
def Vispa.Gui.PortConnection.PointToPointConnection.connectionDirectionString | ( | self, | |
dir | |||
) |
Definition at line 161 of file PortConnection.py.
def Vispa.Gui.PortConnection.PointToPointConnection.cornerIsDefined | ( | self, | |
type | |||
) |
Definition at line 402 of file PortConnection.py.
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.getRectBetweenTwoPoints().
def Vispa.Gui.PortConnection.PointToPointConnection.cornerTypeString | ( | self, | |
type | |||
) |
Definition at line 148 of file PortConnection.py.
def Vispa.Gui.PortConnection.PointToPointConnection.delete | ( | self | ) |
Deletes this connection.
Definition at line 811 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection._deletedFlag, Vispa.Gui.ConnectableWidget.ConnectableWidget.deleteLater(), edm::signalslot::Signal< void(StreamID)>.emit(), edm::signalslot::Signal< void(const std::string &, const std::string &)>.emit(), edm::signalslot::Signal< void(service::SystemBounds const &)>.emit(), edm::signalslot::Signal< void(StreamContext const &)>.emit(), edm::signalslot::Signal< void(const std::string &, const edmplugin::PluginInfo &)>.emit(), edm::signalslot::Signal< void(TerminationOrigin)>.emit(), edm::signalslot::Signal< void(StreamContext const &, PathContext const &, HLTPathStatus const &)>.emit(), edm::signalslot::Signal< void(edm::StreamContext const &, edm::ModuleCallingContext const &)>.emit(), edm::signalslot::Signal< void()>.emit(), edm::signalslot::Signal< void(std::string const &, bool)>.emit(), edm::signalslot::Signal< void(RunIndex)>.emit(), edm::signalslot::Signal< void(GlobalContext const &, ModuleCallingContext const &)>.emit(), edm::signalslot::Signal< void(eventsetup::ComponentDescription const *, eventsetup::EventSetupRecordKey const &, eventsetup::DataKey const &)>.emit(), edm::signalslot::Signal< T >.emit(), edm::signalslot::Signal< void(const edmplugin::SharedLibrary &)>.emit(), edm::signalslot::Signal< void(edm::BranchDescription const &)>.emit(), edm::signalslot::Signal< void(GlobalContext const &)>.emit(), edm::signalslot::Signal< void(StreamContext const &, PathContext const &)>.emit(), edm::signalslot::Signal< void(GlobalContext const &, TerminationOrigin)>.emit(), edm::signalslot::Signal< void(const boost::filesystem::path &)>.emit(), edm::signalslot::Signal< void(const edmplugin::PluginFactoryBase *)>.emit(), edm::signalslot::Signal< void(PathsAndConsumesOfModulesBase const &, ProcessContext const &)>.emit(), edm::signalslot::Signal< void(StreamContext const &, ModuleCallingContext const &)>.emit(), edm::signalslot::Signal< void(StreamContext const &, TerminationOrigin)>.emit(), edm::signalslot::Signal< void(ModuleDescription const &)>.emit(), edm::signalslot::Signal< void(LuminosityBlockIndex)>.emit(), Signal< void(BranchDescription const &)>.emit(), and Vispa.Gui.PortConnection.PointToPointConnection.isDeletable().
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.keyPressEvent(), Vispa.Views.LineDecayView.LineDecayContainer.keyPressEvent(), and Vispa.Gui.VispaWidget.VispaWidget.keyPressEvent().
def Vispa.Gui.PortConnection.PointToPointConnection.dragReferencePoint | ( | self | ) |
Definition at line 145 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection._dragReferencePoint.
def Vispa.Gui.PortConnection.PointToPointConnection.draw | ( | self | ) |
Draws connection.
Definition at line 728 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection._route, Vispa.Gui.PortConnection.PointToPointConnection._selectedFlag, Vispa.Gui.PortConnection.PointToPointConnection.calculateRoute(), Vispa.Gui.PortConnection.PointToPointConnection.drawSection(), Vispa.Gui.PortConnection.PointToPointConnection.routeIsValid(), and Vispa.Gui.Zoomable.Zoomable.zoom().
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.paintEvent().
def Vispa.Gui.PortConnection.PointToPointConnection.drawCorner | ( | self, | |
painter, | |||
position, | |||
cornerType, | |||
maxRadius = None |
|||
) |
Definition at line 419 of file PortConnection.py.
References SiStripPI.max, min(), and Vispa.Gui.Zoomable.Zoomable.zoomFactor().
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.drawSection().
def Vispa.Gui.PortConnection.PointToPointConnection.drawLineSection | ( | self, | |
painter, | |||
firstP, | |||
secondP, | |||
firstCorner, | |||
secondCorner | |||
) |
Definition at line 580 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection.getPointToPointDirection(), Vispa.Gui.PortConnection.PointToPointConnection.getRectBetweenTwoPoints(), and Vispa.Gui.Zoomable.Zoomable.zoomFactor().
def Vispa.Gui.PortConnection.PointToPointConnection.drawSection | ( | self, | |
painter, | |||
sectionIndex | |||
) |
This is going to replace drawLineSection
Definition at line 608 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection._route, funct.abs(), Vispa.Gui.PortConnection.PointToPointConnection.drawCorner(), Vispa.Gui.PortConnection.PointToPointConnection.drawStraightLine(), Vispa.Gui.PortConnection.PointToPointConnection.getCornerType(), Vispa.Gui.PortConnection.PointToPointConnection.getPointToPointDirection(), Vispa.Gui.PortConnection.PointToPointConnection.getRectBetweenTwoPoints(), Vispa.Gui.PortConnection.PointToPointConnection.sourceDirection(), Vispa.Gui.PortConnection.PointToPointConnection.targetDirection(), and Vispa.Gui.Zoomable.Zoomable.zoomFactor().
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.draw().
def Vispa.Gui.PortConnection.PointToPointConnection.drawStraightLine | ( | self, | |
painter, | |||
firstP, | |||
secondP | |||
) |
Draw a straight line between two points.
Definition at line 696 of file PortConnection.py.
References SiStripPI.max, and Vispa.Gui.Zoomable.Zoomable.zoomFactor().
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.drawSection().
def Vispa.Gui.PortConnection.PointToPointConnection.forceRouteRecalculation | ( | self | ) |
Definition at line 172 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection._recalculateRouteFlag.
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.setZoom().
def Vispa.Gui.PortConnection.PointToPointConnection.getCornerType | ( | self, | |
lastDirection, | |||
thisDirection | |||
) |
Definition at line 407 of file PortConnection.py.
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.drawSection().
def Vispa.Gui.PortConnection.PointToPointConnection.getPointByDistance | ( | self, | |
start, | |||
distance, | |||
direction | |||
) |
Returns a point which is about 'distance' pixels remotely from 'start' in direction 'direction'.
Definition at line 244 of file PortConnection.py.
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.calculateRoute(), and Vispa.Gui.PortConnection.PointToPointConnection.nextPointByDistance().
def Vispa.Gui.PortConnection.PointToPointConnection.getPointToPointDirection | ( | self, | |
lastP, | |||
thisP | |||
) |
Definition at line 384 of file PortConnection.py.
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.betweenTwoPoints(), Vispa.Gui.PortConnection.PointToPointConnection.drawLineSection(), Vispa.Gui.PortConnection.PointToPointConnection.drawSection(), and Vispa.Gui.PortConnection.PointToPointConnection.getRectBetweenTwoPoints().
def Vispa.Gui.PortConnection.PointToPointConnection.getRectBetweenTwoPoints | ( | self, | |
firstP, | |||
secondP, | |||
firstCorner = CornerType.UNDEFINED , |
|||
secondCorner = CornerType.UNDEFINED |
|||
) |
Definition at line 533 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection.cornerIsDefined(), Vispa.Gui.PortConnection.PointToPointConnection.getPointToPointDirection(), and Vispa.Gui.Zoomable.Zoomable.zoomFactor().
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.belongsToRoute(), Vispa.Gui.PortConnection.PointToPointConnection.drawLineSection(), and Vispa.Gui.PortConnection.PointToPointConnection.drawSection().
def Vispa.Gui.PortConnection.PointToPointConnection.isDeletable | ( | self | ) |
Definition at line 118 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection._deletableFlag, and electrons_cff.bool.
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.delete(), and Vispa.Gui.VispaWidget.VispaWidget.delete().
def Vispa.Gui.PortConnection.PointToPointConnection.isSelectable | ( | self | ) |
Definition at line 112 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection._selectableFlag, and electrons_cff.bool.
Referenced by Vispa.Gui.VispaWidget.VispaWidget.isSelected(), Vispa.Gui.PortConnection.PointToPointConnection.select(), and Vispa.Gui.VispaWidget.VispaWidget.select().
def Vispa.Gui.PortConnection.PointToPointConnection.isSelected | ( | self | ) |
Definition at line 121 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection._selectedFlag.
Referenced by Vispa.Gui.VispaWidget.VispaWidget.contentRect(), Vispa.Gui.VispaWidget.VispaWidget.drawHeaderBackground(), Vispa.Views.LineDecayView.LineDecayContainer.keyPressEvent(), Vispa.Gui.ConnectableWidget.ConnectableWidget.leaveEvent(), Vispa.Gui.VispaWidget.VispaWidget.mousePressEvent(), Vispa.Gui.VispaWidget.VispaWidget.paint(), Vispa.Views.LineDecayView.ParticleWidget.paint(), Vispa.Gui.PortConnection.PointToPointConnection.select(), and Vispa.Gui.VispaWidget.VispaWidget.select().
def Vispa.Gui.PortConnection.PointToPointConnection.keyPressEvent | ( | self, | |
event | |||
) |
Handle delete and backspace keys to delete connections.
Definition at line 803 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection.delete(), Signal< void(BranchDescription const &)>.emit(), edm::signalslot::Signal< void(StreamID)>.emit(), edm::signalslot::Signal< void(const std::string &, const std::string &)>.emit(), edm::signalslot::Signal< void(service::SystemBounds const &)>.emit(), edm::signalslot::Signal< void(StreamContext const &)>.emit(), edm::signalslot::Signal< void(const std::string &, const edmplugin::PluginInfo &)>.emit(), edm::signalslot::Signal< void(TerminationOrigin)>.emit(), edm::signalslot::Signal< void(StreamContext const &, PathContext const &, HLTPathStatus const &)>.emit(), edm::signalslot::Signal< void(edm::StreamContext const &, edm::ModuleCallingContext const &)>.emit(), edm::signalslot::Signal< void()>.emit(), edm::signalslot::Signal< void(std::string const &, bool)>.emit(), edm::signalslot::Signal< void(RunIndex)>.emit(), edm::signalslot::Signal< void(GlobalContext const &, ModuleCallingContext const &)>.emit(), edm::signalslot::Signal< void(eventsetup::ComponentDescription const *, eventsetup::EventSetupRecordKey const &, eventsetup::DataKey const &)>.emit(), edm::signalslot::Signal< void(LuminosityBlockIndex)>.emit(), edm::signalslot::Signal< void(const edmplugin::SharedLibrary &)>.emit(), edm::signalslot::Signal< void(edm::BranchDescription const &)>.emit(), edm::signalslot::Signal< void(GlobalContext const &)>.emit(), edm::signalslot::Signal< void(StreamContext const &, PathContext const &)>.emit(), edm::signalslot::Signal< void(GlobalContext const &, TerminationOrigin)>.emit(), edm::signalslot::Signal< void(const boost::filesystem::path &)>.emit(), edm::signalslot::Signal< void(const edmplugin::PluginFactoryBase *)>.emit(), edm::signalslot::Signal< void(PathsAndConsumesOfModulesBase const &, ProcessContext const &)>.emit(), edm::signalslot::Signal< void(StreamContext const &, ModuleCallingContext const &)>.emit(), edm::signalslot::Signal< void(StreamContext const &, TerminationOrigin)>.emit(), edm::signalslot::Signal< void(ModuleDescription const &)>.emit(), and edm::signalslot::Signal< T >.emit().
def Vispa.Gui.PortConnection.PointToPointConnection.mousePressEvent | ( | self, | |
event | |||
) |
Selects connection if event.pos() lies within the connection's borders. Otherwise the event is propagated to underlying widget via AnalysisDesignerWorkspace.propagateEventUnderConnectionWidget().
Definition at line 791 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection.belongsToRoute(), edmIntegrityCheck.PublishToFileSystem.parent, edm::ThinnedAssociationBranches.parent(), confdb.HLTProcess.parent, reco::PattRecoNode< Cluster >.parent(), FSimVertex.parent(), DDI::Division.parent(), math::GraphWalker< N, E >.parent(), math::GraphWalker< ReferenceCountingPointer, ReferenceCountingPointer >.parent(), math::GraphWalker< DDLogicalPart, DDPosData * >.parent(), GraphWalker< N, E >.parent(), edm::ModuleCallingContext.parent(), DDLSAX2FileHandler.parent(), OpticalObject.parent(), emtf::Node.parent, FWPSetTableManager::PSetData.parent, edm::DocFormatHelper.parent(), EmDQMReco::FourVectorMonitorElements.parent, DDFilteredView.parent(), cms::DDFilteredView.parent(), DDExpandedView.parent(), DDDivision.parent(), options.HLTProcessOptions.parent, dqmservices::TriggerSelector::TreeElement.parent(), BeautifulSoup.PageElement.parent, DDXMLElement.parent(), globcontrol.parent, Vispa.Views.LineDecayView.DecayObject.parent(), FWViewContextMenuHandlerGL.select(), SeedConfigSelector.select(), pf2pat::PtMinPFCandidateSelectorDefinition.select(), pf2pat::PdgIdPFCandidateSelectorDefinition.select(), pf2pat::GenericPFJetSelectorDefinition.select(), cond::persistency::ITagTable.select(), RecoTrackViewRefSelector.select(), AlignmentSeedSelector.select(), ipf2pat::ObjectSelector< Selector, CollectionType >.select(), RecoTrackRefSelector.select(), CSCOverlapConfigSelector.select(), AlignmentCSCOverlapSelector.select(), RecoTrackSelector.select(), AlignmentCSCTrackSelector.select(), CalibrationTrackSelector.select(), CSCBeamHaloConfigSelector.select(), AlignmentCSCBeamHaloSelector.select(), pf2pat::GenericPFCandidateSelectorDefinition.select(), CSCTrackConfigSelector.select(), cond::persistency::GLOBAL_TAG::Table.select(), EventSelector.select(), SiStripCalTrackConfigSelector.select(), cond::persistency::TAG::Table.select(), RawDataFEDSelector.select(), AlignmentTwoBodyDecayTrackSelector.select(), pf2pat::IsolatedPFCandidateSelectorDefinition.select(), pf2pat::MuonIDPFCandidateSelectorDefinition.select(), pf2pat::IPCutPFCandidateSelectorDefinition.select(), RPCMonitorLinkSynchro.select(), AlignmentGlobalTrackSelector.select(), AlignmentTrackSelector.select(), StringCutEventSelector< Object, any >.select(), SingleEleCalibSelector.select(), reco::modules::MatcherBase< C1, C2, M >.select(), MuonConfigSelector.select(), AlignmentMuonSelector.select(), SingleElementCollectionSelectorPlusEvent< InputCollection, Selector, OutputCollection, StoreContainer, RefAdder >.select(), reco::modulesNew::Matcher< C1, C2, S, D >.select(), TrackConfigSelector.select(), FWModelExpressionSelector.select(), cond::persistency::IPayloadTable.select(), AssociatedVariableCollectionSelector< InputCollection, VarCollection, Selector, OutputCollection, StoreContainer, RefAdder >.select(), ObjectPairCollectionSelector< InputCollection, Selector, StoreContainer, RefAdder >.select(), SingleElementCollectionSelector< InputCollection, Selector, OutputCollection, StoreContainer, RefAdder >.select(), SingleElementCollectionRefSelector< InputType, Selector, OutputCollection, StoreContainer, RefAdder >.select(), reco::SelectInCollection< Object >.select(), SortCollectionSelector< InputCollection, Comparator, OutputCollection, StoreContainer, RefAdder >.select(), AlCaDiJetsProducer.select(), AlCaGammaJetProducer.select(), cond::persistency::RUN_INFO::Table.select(), cond::persistency::IIOVTable.select(), FWModelId.select(), pf2pat::ElectronIDPFCandidateSelectorDefinition.select(), reco::modules::Matcher< C1, C2, S, D, M >.select(), cond::persistency::GLOBAL_TAG_MAP::Table.select(), FWSelectionManager.select(), FWViewContextMenuHandlerBase.select(), reco::SelectIndecesInCollection< Object >.select(), AlCaHBHEMuonProducer.select(), AlCaGammaJetSelector.select(), cond::persistency::PAYLOAD::Table.select(), CosmicTrackingParticleSelector.select(), CandCombinerBase< OutputCollection, CandPtr >.select(), cond::persistency::ITagMigrationTable.select(), NamedCandCombinerBase.select(), reco::PhysObjectMatcher< C1, C2, S, D, Q >.select(), cond::persistency::IPayloadMigrationTable.select(), AlCaIsoTracksProducer.select(), StringCutsEventSelector< Object, existenceMatter >.select(), cond::persistency::IGTTable.select(), Vispa.Gui.PortConnection.PointToPointConnection.select(), NamedCandCombiner< Selector, PairSelector, Cloner, Setup >.select(), MuonResidualsFitter::MuonAlignmentTreeRow.select, cond::persistency::IGTMapTable.select(), CandCombiner< Selector, PairSelector, Cloner, OutputCollection, Setup >.select(), cond::persistency::IOV::Table.select(), cond::persistency::IRunInfoTable.select(), SelectionStepHLTBase.select(), FWEventItem.select(), SelectionStepHLT< Object >.select(), SelectionStep< Object >.select(), and Vispa.Gui.ConnectableWidget.ConnectableWidget.select().
def Vispa.Gui.PortConnection.PointToPointConnection.nextPointByDistance | ( | self, | |
route, | |||
distance, | |||
direction | |||
) |
Directly adds getPointByDistance() to 'route'.
Definition at line 259 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection.getPointByDistance().
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.calculateRoute().
def Vispa.Gui.PortConnection.PointToPointConnection.nextPointByTarget | ( | self, | |
route, | |||
target, | |||
orientation | |||
) |
Adds a point to 'route', so the route approaches to the 'target' point in a specific 'orientation'. This means that the added point and 'target' have one coordinate in common. If 'orientation' points in horizontal direction (left or right) the x components will be equal. If 'orientation' points in vertical direction (up or down) the y components will be equal.
Definition at line 270 of file PortConnection.py.
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.calculateRoute().
def Vispa.Gui.PortConnection.PointToPointConnection.paintEvent | ( | self, | |
event | |||
) |
Handles paint events.
Definition at line 719 of file PortConnection.py.
References FWBoxIconBase.draw(), DrawPlot.draw(), FWCheckedTextTableCellRenderer.draw(), FWColumnLabelCellRenderer.draw(), FWCollectionSummaryModelCellRenderer.draw(), FWFramedTextTableCellRenderer.draw(), FWTableCellRendererBase.draw(), FWTextTableCellRenderer.draw(), FWTextTreeCellRenderer.draw(), CmsShowMainBase.draw(), FWGeometryTableManagerBase::ColorBoxRenderer.draw(), fwlite::Event.draw(), Vispa.Gui.PortConnection.PointToPointConnection.draw(), HcalObjRepresent::ADataRepr.draw(), cond::CredentialStore.updateConnection(), and Vispa.Gui.PortConnection.PointToPointConnection.updateConnection().
def Vispa.Gui.PortConnection.PointToPointConnection.routeChanged | ( | self | ) |
Definition at line 80 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection._recalculateRouteFlag.
def Vispa.Gui.PortConnection.PointToPointConnection.routeIsValid | ( | self | ) |
Definition at line 175 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection._route.
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.belongsToRoute(), Vispa.Gui.PortConnection.PointToPointConnection.bottomRight(), Vispa.Gui.PortConnection.PointToPointConnection.draw(), and Vispa.Gui.PortConnection.PointToPointConnection.topLeft().
def Vispa.Gui.PortConnection.PointToPointConnection.select | ( | self, | |
sel = True , |
|||
multiSelect = False |
|||
) |
Definition at line 124 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection._selectedFlag, Vispa.Gui.PortConnection.PointToPointConnection.isSelectable(), DetIdSelector.isSelected(), FWGUISubviewArea.isSelected(), FWEventItem::ModelInfo.isSelected(), SeedMultiplicityAnalyzer::FromTrackRefSeedFilter.isSelected(), Vispa.Gui.PortConnection.PointToPointConnection.isSelected(), edmIntegrityCheck.PublishToFileSystem.parent, edm::ThinnedAssociationBranches.parent(), FSimVertex.parent(), confdb.HLTProcess.parent, reco::PattRecoNode< Cluster >.parent(), DDI::Division.parent(), math::GraphWalker< ReferenceCountingPointer, ReferenceCountingPointer >.parent(), math::GraphWalker< DDLogicalPart, DDPosData * >.parent(), GraphWalker< N, E >.parent(), math::GraphWalker< N, E >.parent(), edm::ModuleCallingContext.parent(), DDLSAX2FileHandler.parent(), OpticalObject.parent(), edm::DocFormatHelper.parent(), FWPSetTableManager::PSetData.parent, emtf::Node.parent, EmDQMReco::FourVectorMonitorElements.parent, DDFilteredView.parent(), cms::DDFilteredView.parent(), DDExpandedView.parent(), DDDivision.parent(), options.HLTProcessOptions.parent, dqmservices::TriggerSelector::TreeElement.parent(), DDXMLElement.parent(), BeautifulSoup.PageElement.parent, globcontrol.parent, Vispa.Views.LineDecayView.DecayObject.parent(), DDDWorldObserver< Event >.update(), KillSecondariesRunAction.update(), KillSecondariesTrackAction.update(), ECALPFSeedCleaner.update(), SaveSimTrack.update(), PTStatistics.update(), PrintTrackNumberAction.update(), GenericMVAComputerCache.update(), Basic2DGenericPFlowClusterizer.update(), PFMultiDepthClusterizer.update(), reco::KalmanGhostTrackUpdater.update(), DDG4ProductionCuts.update(), VertexTrackUpdator< N >.update(), DummyVertexTrackUpdator< N >.update(), FastFedCablingTask.update(), TrajectoryStateUpdator.update(), PFlow2DClusterizerWithTime.update(), RecHitTopologicalCleanerBase.update(), LagrangeChildUpdator.update(), ApvTimingTask.update(), ErrorCorrelation.update(), FedTimingTask.update(), VpspScanTask.update(), MSLayersAtAngle.update(), NoiseHistosUsingDb.update(), OptoScanHistosUsingDb.update(), PedestalsHistosUsingDb.update(), PedsFullNoiseHistosUsingDb.update(), PedsOnlyHistosUsingDb.update(), VpspScanHistosUsingDb.update(), PrintSensitive.update(), GsfMultiStateUpdator.update(), ApvTimingHistosUsingDb.update(), PedestalsTask.update(), OptoScanTask.update(), DaqScopeModeHistosUsingDb.update(), AlignableDet.update(), MonopoleSteppingAction.update(), CalibrationScanTask.update(), FineDelayTask.update(), LatencyTask.update(), FastFedCablingHistosUsingDb.update(), CalibrationTask.update(), SCRegressionCalculator< VarCalc >.update(), edm::SubProcessParentageHelper.update(), PFClusterEnergyCorrectorBase.update(), PFCPositionCalculatorBase.update(), AlignableDetUnit.update(), RHStopTracer.update(), FedCablingTask.update(), KFStrip1DUpdator.update(), LatencyHistosUsingDb.update(), cond::persistency::ITagTable.update(), CheckOverlap.update(), TkPhase2OTMeasurementDet.update(), NoiseTask.update(), PedsOnlyTask.update(), TkPixelMeasurementDet.update(), CountProcessesAction.update(), PrintGeomInfoAction.update(), PrintGeomSummary.update(), CalibrationHistosUsingDb.update(), FineDelayHistosUsingDb.update(), ChildUpdator.update(), PrintMaterialBudgetInfo.update(), BaselinePFSCRegression.update(), progressbar.Widget.update(), PedsFullNoiseTask.update(), PhysicsTools::MVAComputerCache.update(), KFSwitching1DUpdator.update(), AlignableCSCChamber.update(), KinematicConstrainedVertexUpdator.update(), HGCScintSD.update(), StoreSecondary.update(), cond::persistency::GLOBAL_TAG::Table.update(), MaterialBudgetHcal.update(), HFNoseSD.update(), HGCalSD.update(), FastTimerSD.update(), edm::RunningAverage.update(), DaqScopeModeTask.update(), HGCalTBMB.update(), BinomialProbability.update(), Observer< const T * >.update(), Observer< T >.update(), Observer< const BeginOfRun * >.update(), Observer< const DDDWorld * >.update(), Observer< const G4Step * >.update(), Observer< const EndOfEvent * >.update(), Observer< const BeginOfTrack * >.update(), Observer< const EndOfJob * >.update(), Observer< const EndOfTrack * >.update(), Observer< const BeginOfJob * >.update(), Observer< const Event * >.update(), Observer< const EndOfRun * >.update(), AlignableTracker.update(), Observer< const BeginOfEvent * >.update(), GflashG4Watcher.update(), pathelpers::Record.update(), MuonServiceProxy.update(), PFClusterBuilderBase.update(), HGCSD.update(), cond::persistency::TAG::Table.update(), edm::storage::StatisticsSenderService::FileStatistics.update(), funct::Master< F >.update(), KFUpdator.update(), RealisticSimClusterMapper.update(), MaterialBudgetForward.update(), MaterialBudget.update(), CaloTrkProcessing.update(), CheckSecondary.update(), AlignableComposite.update(), SimG4FluxProducer.update(), EcalSimHitsValidProducer.update(), ECAL2DPositionCalcWithDepthCorr.update(), KalmanVertexTrackUpdator< 5 >.update(), KalmanVertexTrackUpdator< N >.update(), TrackingMaterialProducer.update(), HcalTestAnalysis.update(), FWJobMetadataManager.update(), TrackingVerboseAction.update(), L1TMuonBarrelKalmanAlgo.update(), PhysicsTools::TreeReader.update(), SiTrackerMultiRecHitUpdator.update(), BasicMultiTrajectoryState.update(), MaterialBudgetAction.update(), KalmanVertexUpdator< 5 >.update(), SingleParticleEvent.update(), pos::PixelConfig.update(), reco::GhostTrackFitter::PredictionUpdater.update(), KalmanVertexUpdator< N >.update(), edm::service::CondorStatusService.update(), AlignableMuon.update(), SiStripPartition.update(), fwlite::RecordWriter.update(), MuonTrajectoryUpdator.update(), SiStripConfObject.update(), fastsim::Geometry.update(), FWParameterSetterBase.update(), TimingSD.update(), HGCPassive.update(), FiberSD.update(), HCalSD.update(), progressbar.Timer.update(), TotemTestGem.update(), SimG4HcalValidation.update(), MuonSensitiveDetector.update(), simwatcher::BeginOfTrackCounter.update(), HcaluLUTTPGCoder.update(), KinematicConstrainedVertexUpdatorT< nTrk, nConstraint >.update(), TkAccumulatingSensitiveDetector.update(), MuonUpdatorAtVertex.update(), Alignable.update(), DQMOldReceiver.update(), HcalTB02Analysis.update(), LaserAlignmentSimulation.update(), TotemSD.update(), sim_act::Signaler< EndOfEvent >.update(), CaloSteppingAction.update(), sim_act::Signaler< BeginOfJob >.update(), sim_act::Signaler< DDDWorld >.update(), sim_act::Signaler< BeginOfRun >.update(), sim_act::Signaler< T >.update(), ApvAnalysisFactory.update(), sim_act::Signaler< G4Step >.update(), sim_act::Signaler< BeginOfTrack >.update(), sim_act::Signaler< EndOfTrack >.update(), sim_act::Signaler< EndOfRun >.update(), sim_act::Signaler< BeginOfEvent >.update(), SimTracer.update(), progressbar.WidgetHFill.update(), HcalForwardAnalysis.update(), FP420SD.update(), DTSegmentUpdator.update(), DTVDriftCalibration::cellInfo.update(), DAClusterizerInZ.update(), sistrip::RawToDigiUnpacker.update(), HcalTB04Analysis.update(), SimG4HGCalValidation.update(), DoCastorAnalysis.update(), ZdcTestAnalysis.update(), CastorTestAnalysis.update(), EcalTBH4Trigger.update(), PhysicsTools::TreeReader::Value.update(), BetafuncEvtVtxGenerator.update(), CaloSD.update(), InitialClusteringStepBase.update(), cond::persistency::IPayloadMigrationTable.update(), PhysicsTools::MVAModuleHelper< Record, Object, Filler >::Value.update(), HLTScalersClient::CountLSFifo_t.update(), progressbar.Bar.update(), DynamicTruncation.update(), jsoncollector::IntJ.update(), edm::service::SimpleMemoryCheck.update(), PFECALSuperClusterAlgo.update(), edm::BMixingModule.update(), evf::FastMonitoringService::Encoding.update(), progressbar.BouncingBar.update(), GaussianSumUtilities1D.update(), CastorShowerLibraryMaker.update(), cond::persistency::IGTTable.update(), DTRecSegment2D.update(), MonitorElement.update(), StandAloneMuonFilter.update(), jsoncollector::DoubleJ.update(), FWPSetTableManager.update(), DQMNet::Peer.update, G4StepStatistics.update(), TrajectoryStateOnSurface.update(), progressbar.FormatLabel.update(), DQMNet::AutoPeer.update, FWLiteESRecordWriterAnalyzer.update(), CommissioningTask.update(), FP420Test.update(), StMeasurementDetSet.update(), DAClusterizerInZ_vect.update(), Folder.update(), BscTest.update(), jsoncollector::StringJ.update(), dqm-mbProfile.Profile.update(), DAClusterizerInZT_vect.update(), jsoncollector::HistoJ< unsigned int >.update(), jsoncollector::HistoJ< T >.update(), BasicTrajectoryState.update(), progressbar.ProgressBar.update(), PxMeasurementDetSet.update(), Phase2OTMeasurementDetSet.update(), edmStreamStallGrapher.Stack.update(), crabFunctions.CrabTask.update(), DetSetVector< T >.update(), DetSetVector< SiStripCluster >.update(), DetSetVector< ClusterType >.update(), const_iterator.update(), DetSetVector< SiPixelCluster >.update(), and edmNew::DetSetVector< T >.update().
Referenced by Vispa.Plugins.Browser.BrowserTabController.BrowserTabController.find(), Vispa.Gui.PortConnection.PointToPointConnection.mousePressEvent(), Vispa.Gui.VispaWidget.VispaWidget.mousePressEvent(), and Vispa.Views.AbstractView.AbstractView.restoreSelection().
def Vispa.Gui.PortConnection.PointToPointConnection.setDeletable | ( | self, | |
sel | |||
) |
Definition at line 115 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection._deletableFlag.
def Vispa.Gui.PortConnection.PointToPointConnection.setDragReferencePoint | ( | self, | |
pos | |||
) |
Definition at line 142 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection._dragReferencePoint.
def Vispa.Gui.PortConnection.PointToPointConnection.setSelectable | ( | self, | |
sel | |||
) |
Definition at line 109 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection._selectableFlag.
def Vispa.Gui.PortConnection.PointToPointConnection.setSourceDirection | ( | self, | |
dir | |||
) |
Definition at line 97 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection._sourceDirection.
def Vispa.Gui.PortConnection.PointToPointConnection.setTargetDirection | ( | self, | |
dir | |||
) |
Definition at line 103 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection._targetDirection.
def Vispa.Gui.PortConnection.PointToPointConnection.setType | ( | self, | |
type | |||
) |
Sets type of connection. The type argument is a string of capitalized letters and should be one of the available types described in the class documentation.
Definition at line 73 of file PortConnection.py.
def Vispa.Gui.PortConnection.PointToPointConnection.setZoom | ( | self, | |
zoom | |||
) |
Definition at line 83 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection.forceRouteRecalculation().
Referenced by Vispa.Gui.Zoomable.Zoomable.decrementZoom(), Vispa.Gui.Zoomable.Zoomable.incrementZoom(), Vispa.Main.TabController.TabController.zoomAll(), Vispa.Main.TabController.TabController.zoomDialog(), Vispa.Main.TabController.TabController.zoomHundred(), and Vispa.Main.TabController.TabController.zoomUser().
def Vispa.Gui.PortConnection.PointToPointConnection.sourceDirection | ( | self | ) |
Definition at line 100 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection._sourceDirection.
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.calculateRoute(), and Vispa.Gui.PortConnection.PointToPointConnection.drawSection().
def Vispa.Gui.PortConnection.PointToPointConnection.sourcePoint | ( | self | ) |
Definition at line 87 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection._sourcePoint.
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.calculateRoute().
def Vispa.Gui.PortConnection.PointToPointConnection.targetDirection | ( | self | ) |
Definition at line 106 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection._targetDirection.
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.calculateRoute(), and Vispa.Gui.PortConnection.PointToPointConnection.drawSection().
def Vispa.Gui.PortConnection.PointToPointConnection.targetPoint | ( | self | ) |
Definition at line 90 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection._targetPoint.
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.calculateRoute().
def Vispa.Gui.PortConnection.PointToPointConnection.topLeft | ( | self | ) |
Places a rect around the route and returns the top-left point in parent's coordinates.
Definition at line 759 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection._route, Vispa.Gui.PortConnection.PointToPointConnection.routeIsValid(), and Vispa.Gui.Zoomable.Zoomable.zoomFactor().
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.updateConnection().
def Vispa.Gui.PortConnection.PointToPointConnection.updateConnection | ( | self | ) |
Recalculates route and then positions and sizes the widget accordingly.
Definition at line 705 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection.bottomRight(), Vispa.Gui.PortConnection.PointToPointConnection.calculateRoute(), AlignableDetUnit.move(), AlignableBeamSpot.move(), fastsim::HelixTrajectory.move(), fastsim::StraightTrajectory.move(), CaloGeometryHelper.move(), AlignableComposite.move(), fastsim::Trajectory.move(), Alignable.move(), l1t::CaloStage2Nav.move(), GeomDet.move(), GloballyPositioned< T >.move(), GloballyPositioned< float >.move(), GloballyPositioned< align::Scalar >.move(), PFECALHashNavigator.move(), Vispa.Gui.ConnectableWidget.ConnectableWidget.move(), Vispa.Views.LineDecayView.DecayObject.move(), Vispa.Views.LineDecayView.DecayNode.move(), Vispa.Gui.VispaWidget.VispaWidget.move(), Vispa.Views.LineDecayView.DecayLine.move(), plotting.PlotTextBox.move(), reco::TrackResiduals.resize(), LayerHitMapCache::SimpleCache.resize(), EZMgrVL< T >.resize(), StorageAccount.resize, LocalCacheFile.resize(), EZMgrFL< T >.resize(), DavixFile.resize(), LStoreFile.resize(), StorageAccountProxy.resize(), edm::stream::impl::dummy_vec.resize(), DCacheFile.resize(), HGCDataFrame< D, S >.resize(), BXVector< T >.resize(), BXVector< RegionalMuonCand >.resize(), BXVector< const l1t::l1t::EtSum * >.resize(), BXVector< const l1t::l1t::L1Candidate * >.resize(), BXVector< l1t::Muon >.resize(), BXVector< const l1t::l1t::Muon * >.resize(), BXVector< l1t::Tau >.resize(), BXVector< const GlobalExtBlk * >.resize(), Storage.resize(), GsfMaterialEffectsUpdator.resize(), FEDRawData.resize(), lhef::HEPRUP.resize(), FTLDataFrameT< D, S, DECODE >.resize(), XrdFile.resize(), File.resize(), EZArrayFL< GlobalPoint >.resize(), EZArrayFL< T >.resize(), Phase2ITPixelClusterShapeCache.resize(), SiPixelClusterShapeCache.resize(), edm::DataFrameContainer.resize(), L1GctProcessor::Pipeline< T >.resize(), edm::VecArray< edm::ProductID, 2 >.resize(), edm::VecArray< std::pair< int, int >, 9 >.resize(), VecArray< reco::TrackBase::TrackAlgorithm, reco::TrackBase::algoSize >.resize(), edm::VecArray< T, N >.resize(), L1GtfeExtWord.resize(), reco::FlavorHistoryEvent.resize(), lhef::HEPEUP.resize(), edm::soa::Table< Args >.resize(), Json::Value.resize(), edmNew::DetSetVector< T >::FastFiller.resize(), edmNew::DetSetVector< T >::TSFastFiller.resize(), DetSetVector< SiPixelCluster >.resize(), const_iterator.resize(), DetSetVector< SiStripCluster >.resize(), DetSetVector< ClusterType >.resize(), DetSetVector< T >.resize(), edmNew::DetSetVector< T >.resize(), TrackingNtuple::DetIdCommon.resize(), TrackingNtuple::DetIdOTCommon.resize(), Vispa.Gui.VispaWidget.VispaWidget.resize(), TrackingNtuple::DetIdStripOnly.resize(), Vispa.Gui.PortConnection.PointToPointConnection.topLeft(), DDDWorldObserver< Event >.update(), ECALPFSeedCleaner.update(), KillSecondariesRunAction.update(), KillSecondariesTrackAction.update(), PTStatistics.update(), SaveSimTrack.update(), PrintTrackNumberAction.update(), GenericMVAComputerCache.update(), Basic2DGenericPFlowClusterizer.update(), PFMultiDepthClusterizer.update(), reco::KalmanGhostTrackUpdater.update(), DDG4ProductionCuts.update(), TrajectoryStateUpdator.update(), RecHitTopologicalCleanerBase.update(), PFlow2DClusterizerWithTime.update(), LagrangeChildUpdator.update(), VertexTrackUpdator< N >.update(), DummyVertexTrackUpdator< N >.update(), FastFedCablingTask.update(), VpspScanTask.update(), ErrorCorrelation.update(), MSLayersAtAngle.update(), ApvTimingTask.update(), FedTimingTask.update(), PedestalsTask.update(), GsfMultiStateUpdator.update(), AlignableDet.update(), ApvTimingHistosUsingDb.update(), DaqScopeModeHistosUsingDb.update(), NoiseHistosUsingDb.update(), OptoScanHistosUsingDb.update(), PedestalsHistosUsingDb.update(), PedsFullNoiseHistosUsingDb.update(), PedsOnlyHistosUsingDb.update(), VpspScanHistosUsingDb.update(), PrintSensitive.update(), OptoScanTask.update(), CalibrationScanTask.update(), MonopoleSteppingAction.update(), FineDelayTask.update(), LatencyTask.update(), SCRegressionCalculator< VarCalc >.update(), edm::SubProcessParentageHelper.update(), FastFedCablingHistosUsingDb.update(), CalibrationTask.update(), PFClusterEnergyCorrectorBase.update(), PFCPositionCalculatorBase.update(), AlignableDetUnit.update(), RHStopTracer.update(), FedCablingTask.update(), KFStrip1DUpdator.update(), CheckOverlap.update(), TkPhase2OTMeasurementDet.update(), cond::persistency::ITagTable.update(), LatencyHistosUsingDb.update(), TkPixelMeasurementDet.update(), NoiseTask.update(), PedsOnlyTask.update(), CountProcessesAction.update(), PrintGeomInfoAction.update(), PrintGeomSummary.update(), CalibrationHistosUsingDb.update(), ChildUpdator.update(), FineDelayHistosUsingDb.update(), PedsFullNoiseTask.update(), progressbar.Widget.update(), BaselinePFSCRegression.update(), PrintMaterialBudgetInfo.update(), KFSwitching1DUpdator.update(), PhysicsTools::MVAComputerCache.update(), AlignableCSCChamber.update(), KinematicConstrainedVertexUpdator.update(), MaterialBudgetHcal.update(), cond::persistency::GLOBAL_TAG::Table.update(), HGCScintSD.update(), StoreSecondary.update(), edm::RunningAverage.update(), HGCalSD.update(), HFNoseSD.update(), FastTimerSD.update(), DaqScopeModeTask.update(), HGCalTBMB.update(), Observer< const BeginOfTrack * >.update(), Observer< const G4Step * >.update(), Observer< const EndOfJob * >.update(), Observer< const EndOfRun * >.update(), Observer< const T * >.update(), Observer< const BeginOfEvent * >.update(), Observer< const BeginOfRun * >.update(), Observer< const Event * >.update(), Observer< const DDDWorld * >.update(), Observer< T >.update(), Observer< const EndOfEvent * >.update(), AlignableTracker.update(), Observer< const BeginOfJob * >.update(), BinomialProbability.update(), Observer< const EndOfTrack * >.update(), pathelpers::Record.update(), MuonServiceProxy.update(), PFClusterBuilderBase.update(), GflashG4Watcher.update(), edm::storage::StatisticsSenderService::FileStatistics.update(), cond::persistency::TAG::Table.update(), HGCSD.update(), KFUpdator.update(), MaterialBudget.update(), MaterialBudgetForward.update(), funct::Master< F >.update(), RealisticSimClusterMapper.update(), AlignableComposite.update(), CaloTrkProcessing.update(), CheckSecondary.update(), KalmanVertexTrackUpdator< 5 >.update(), EcalSimHitsValidProducer.update(), SimG4FluxProducer.update(), ECAL2DPositionCalcWithDepthCorr.update(), KalmanVertexTrackUpdator< N >.update(), TrackingMaterialProducer.update(), TrackingVerboseAction.update(), FWJobMetadataManager.update(), HcalTestAnalysis.update(), SiTrackerMultiRecHitUpdator.update(), L1TMuonBarrelKalmanAlgo.update(), PhysicsTools::TreeReader.update(), MaterialBudgetAction.update(), BasicMultiTrajectoryState.update(), KalmanVertexUpdator< 5 >.update(), SingleParticleEvent.update(), reco::GhostTrackFitter::PredictionUpdater.update(), KalmanVertexUpdator< N >.update(), pos::PixelConfig.update(), SiStripPartition.update(), fwlite::RecordWriter.update(), MuonTrajectoryUpdator.update(), AlignableMuon.update(), edm::service::CondorStatusService.update(), SiStripConfObject.update(), fastsim::Geometry.update(), FWParameterSetterBase.update(), TimingSD.update(), HGCPassive.update(), FiberSD.update(), HCalSD.update(), progressbar.Timer.update(), SimG4HcalValidation.update(), TotemTestGem.update(), HcaluLUTTPGCoder.update(), MuonSensitiveDetector.update(), simwatcher::BeginOfTrackCounter.update(), MuonUpdatorAtVertex.update(), TkAccumulatingSensitiveDetector.update(), KinematicConstrainedVertexUpdatorT< nTrk, nConstraint >.update(), Alignable.update(), DQMOldReceiver.update(), HcalTB02Analysis.update(), LaserAlignmentSimulation.update(), TotemSD.update(), sim_act::Signaler< BeginOfJob >.update(), sim_act::Signaler< DDDWorld >.update(), sim_act::Signaler< BeginOfRun >.update(), sim_act::Signaler< G4Step >.update(), sim_act::Signaler< EndOfEvent >.update(), sim_act::Signaler< T >.update(), ApvAnalysisFactory.update(), sim_act::Signaler< EndOfTrack >.update(), sim_act::Signaler< EndOfRun >.update(), sim_act::Signaler< BeginOfTrack >.update(), CaloSteppingAction.update(), sim_act::Signaler< BeginOfEvent >.update(), SimTracer.update(), progressbar.WidgetHFill.update(), HcalForwardAnalysis.update(), FP420SD.update(), DTSegmentUpdator.update(), DTVDriftCalibration::cellInfo.update(), DAClusterizerInZ.update(), sistrip::RawToDigiUnpacker.update(), HcalTB04Analysis.update(), SimG4HGCalValidation.update(), DoCastorAnalysis.update(), ZdcTestAnalysis.update(), CastorTestAnalysis.update(), PhysicsTools::TreeReader::Value.update(), EcalTBH4Trigger.update(), BetafuncEvtVtxGenerator.update(), CaloSD.update(), InitialClusteringStepBase.update(), cond::persistency::IPayloadMigrationTable.update(), PhysicsTools::MVAModuleHelper< Record, Object, Filler >::Value.update(), HLTScalersClient::CountLSFifo_t.update(), progressbar.Bar.update(), DynamicTruncation.update(), jsoncollector::IntJ.update(), edm::service::SimpleMemoryCheck.update(), PFECALSuperClusterAlgo.update(), evf::FastMonitoringService::Encoding.update(), edm::BMixingModule.update(), progressbar.BouncingBar.update(), GaussianSumUtilities1D.update(), CastorShowerLibraryMaker.update(), cond::persistency::IGTTable.update(), DTRecSegment2D.update(), MonitorElement.update(), StandAloneMuonFilter.update(), jsoncollector::DoubleJ.update(), FWPSetTableManager.update(), DQMNet::Peer.update, G4StepStatistics.update(), progressbar.FormatLabel.update(), TrajectoryStateOnSurface.update(), DQMNet::AutoPeer.update, FWLiteESRecordWriterAnalyzer.update(), CommissioningTask.update(), FP420Test.update(), StMeasurementDetSet.update(), Folder.update(), DAClusterizerInZ_vect.update(), BscTest.update(), jsoncollector::StringJ.update(), dqm-mbProfile.Profile.update(), DAClusterizerInZT_vect.update(), jsoncollector::HistoJ< unsigned int >.update(), jsoncollector::HistoJ< T >.update(), BasicTrajectoryState.update(), progressbar.ProgressBar.update(), PxMeasurementDetSet.update(), Phase2OTMeasurementDetSet.update(), edmStreamStallGrapher.Stack.update(), crabFunctions.CrabTask.update(), DetSetVector< T >.update(), const_iterator.update(), DetSetVector< SiPixelCluster >.update(), DetSetVector< SiStripCluster >.update(), edmNew::DetSetVector< T >.update(), and DetSetVector< ClusterType >.update().
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.paintEvent(), and Vispa.Gui.PortConnection.PointToPointConnection.updateTargetPoint().
def Vispa.Gui.PortConnection.PointToPointConnection.updateTargetPoint | ( | self, | |
point | |||
) |
Definition at line 93 of file PortConnection.py.
References Vispa.Gui.PortConnection.PointToPointConnection._targetPoint, cond::CredentialStore.updateConnection(), and Vispa.Gui.PortConnection.PointToPointConnection.updateConnection().
|
private |
|
private |
Definition at line 58 of file PortConnection.py.
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.delete().
|
private |
Definition at line 61 of file PortConnection.py.
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.dragReferencePoint(), and Vispa.Gui.PortConnection.PointToPointConnection.setDragReferencePoint().
|
private |
|
private |
Definition at line 54 of file PortConnection.py.
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.belongsToRoute(), Vispa.Gui.PortConnection.PointToPointConnection.bottomRight(), Vispa.Gui.PortConnection.PointToPointConnection.calculateRoute(), Vispa.Gui.PortConnection.PointToPointConnection.draw(), Vispa.Gui.PortConnection.PointToPointConnection.drawSection(), Vispa.Gui.PortConnection.PointToPointConnection.routeIsValid(), and Vispa.Gui.PortConnection.PointToPointConnection.topLeft().
|
private |
|
private |
Definition at line 56 of file PortConnection.py.
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.draw(), Vispa.Gui.PortConnection.PointToPointConnection.isSelected(), Vispa.Gui.VispaWidget.VispaWidget.isSelected(), Vispa.Gui.PortConnection.PointToPointConnection.select(), and Vispa.Gui.VispaWidget.VispaWidget.select().
|
private |
Definition at line 52 of file PortConnection.py.
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.setSourceDirection(), and Vispa.Gui.PortConnection.PointToPointConnection.sourceDirection().
|
private |
Definition at line 59 of file PortConnection.py.
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.sourcePoint().
|
private |
Definition at line 53 of file PortConnection.py.
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.setTargetDirection(), and Vispa.Gui.PortConnection.PointToPointConnection.targetDirection().
|
private |
Definition at line 60 of file PortConnection.py.
Referenced by Vispa.Gui.PortConnection.PointToPointConnection.targetPoint(), and Vispa.Gui.PortConnection.PointToPointConnection.updateTargetPoint().
|
private |
Definition at line 78 of file PortConnection.py.
Referenced by cfg-viewer.unscheduled._proceed(), Vispa.Gui.PortConnection.PointToPointConnection.calculateRoute(), and SequenceTypes.ExpandVisitor.result().