1 / 15

HepRep: a Generic Interface Definition for HEP Event Display Representables

needs narrowing. BaBar WIRED: the BaBar Experience with WIRED. needs widening. HepRep: a Generic Interface Definition for HEP Event Display Representables. Joseph Perl, SLAC Computing Services.

Download Presentation

HepRep: a Generic Interface Definition for HEP Event Display Representables

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. needs narrowing BaBar WIRED: the BaBar Experience with WIRED needs widening HepRep: a Generic Interface Definition for HEP Event Display Representables Joseph Perl, SLAC Computing Services HepRep forms the central part of a complete generic interface for client server event displays. The HepRep interface supports all of the desirable features of a client server event display, provides for the correct distribution of computing work between the two parts of the system and effectively addresses the many important maintenance issues involved in such a system. Joseph Perl HepRep: a Generic Interface for Event Display Representables

  2. Client Server Event Display EventDisplayClient Event DisplayServer Connection may be slow or unreliable. Even with a fast connection, requesting data in too many small pieces causes unacceptable accumulation of call overhead. An efficient interface must be designed. Joseph Perl HepRep: a Generic Interface for Event Display Representables

  3. Maintenance Problem EventDisplayClient EventDisplayClient EventDisplayClient EventDisplayClient EventServer EventDisplayClient EventDisplayClient At the same time that a static, installed base of client software is being built up on user desktop computers... Joseph Perl HepRep: a Generic Interface for Event Display Representables

  4. Maintenance Problem EventDisplayClient New Rep New Rep EventDisplayClient EventDisplayClient New Rep New Rep New Rep New Rep EventDisplayClient New Rep EventServer EventDisplayClient EventDisplayClient ...new Representables are being defined that must be propagated to all of the previously installed clients. The server evolves, making new Representable Types available, but the user should not be required to update the client software. Joseph Perl HepRep: a Generic Interface for Event Display Representables

  5. Event Display Requirements • Fast: • Minimize network traffic. • Minimize accumulation of call overhead. • Maintainable: • Let a static installed base of client software handle new Representable Types from evolving servers. • Allow physicists to add Representables by modifying only the server side code. • Avoid class explosion in the interface definition and client. • Full-Featured: • Enable picking and physics-based visibility cuts in a simple way for all Representables. • Provide a flexible, generic solution to the problem of pickable object granularity (give the user fine-grained pick abilities, such as the ability to pick on a single hit on a track, while avoiding having so many separate pickable objects that the graphics engine is overloaded). • But users should only have to pay the speed costs of those full features if they want those features at the given moment. Joseph Perl HepRep: a Generic Interface for Event Display Representables

  6. What Does the Server Ship? Event DisplayServer EventDisplayClient • At first glance, the solution seems easy. • The server can just give the client a reference to the Physics Object. • The client can then use remote method invocation solutions (CORBA, RMI) to call methods on the server side. Joseph Perl HepRep: a Generic Interface for Event Display Representables

  7. HepRep: a Generic Interface Definition for HEP Event Display Representables * * 1 1 HepRep Type HepRep Instance HepRep Primitive HepRep Point 1 * 1 * 1 * Name:String Version:String 1 1 X, Y, Z:Float 1 1 * * * HepRep AttDef HepRep AttValue HepRep KnownType HepRep AttName 1 Name:String Desc:String Type:String Label:boolean Extra:String Name:String Value:Any Name:String Version:String Name:String ServerThread +getKnownTypeList ( ) : HepRepKnownTypeList +getRepresentables (KnownType:HepRepKnownType, CutList:HepRepCutList, GetPoints:Boolean, GetDrawAtts:Boolean, GetNonDrawAtts:Boolean, InvertAtts:HepRepAttNameList) : HepRepType HepRep Cut Name:String Comparison:String Value:Any Joseph Perl HepRep: a Generic Interface for Event Display Representables

  8. Representables The design decision behind HepRep is to serve Representables, not Physics Objects. A Representable is the Spatial Information of a Physics Object (track, calorimeter hit, etc.) and can be augmented by that object’s Physics Attributes (momentum, energy, etc.). Serving Representables keeps the detailed reconstruction code, swimmers and detector models on the server side where they belong. Spatial information is assembled and shipped in an efficient manner, avoiding the overhead of too many individual method calls. * * 1 1 HepRep Type HepRep Instance HepRep Primitive HepRep Point 1 * 1 * 1 * Name:String Version:String X, Y, Z:Float 1 1 SubType and SubInstance are handled by recursive use of Type and Instance Type InstanceSubTypeSubInstancePrimitivePoint Track 5 unused unused HelixSegment start Track 5 HitOnTrack 6 HyperCircle center Track 5 KalManPoint 9 HelixSegment start Cluster 12 unused unused Box corners HitStrip 324 unused unused PolyLine points Joseph Perl HepRep: a Generic Interface for Event Display Representables

  9. HepRep Attributes HepRep Type HepRep Instance HepRep Primitive HepRep Point 1 * 1 * 1 * • Any Type, Instance, Primitive or Point may have a sequence of Attributes: • Draw Attributes (such as thickness and color) can be modified in the client through a draw attribute editor • Physics Attributes (such as track momentum or hit error) can be used for visibility cuts (client side or server side) • PickAction Attributes that define special things to do when the user picks on the Representable (such as remove hit and refit track) • Association Attributes that define loose associations between Representables (such as track cluster matching) HepRep AttDef HepRep AttValue Name:String Desc:String Type:String Label:boolean Extra:String Name:String Value:Any Joseph Perl HepRep: a Generic Interface for Event Display Representables

  10. HepRep Attributes HepRep AttDef HepRep AttValue Name:String Desc:String Type:String Label:boolean Extra:String Name:String Value:Any NameDescExtraTypeValue Pt Transverse Momentum GeV Physics 1.76 PID Particle ID unused Physics Pion System Detector System unused Physics Vertex Detector Color Color unused Draw Blue Remove Remove Hit & Refit Track remove PickAction Track(5).Hit(8) TrkClust Track’s Associated Cluster Cluster Association Cluster Number DrawAs DrawAs unused Draw Ellipsoid Joseph Perl HepRep: a Generic Interface for Event Display Representables

  11. The Attribute Named DrawAs Encodes How the Primitive Uses the Points HepRep Primitive HepRep Point 1 * 1 X, Y, Z:Float As with any Attribute, DrawAs can be specified here or can be inherited from Instance or Type 1 * HepRep AttValue Name:String Value:Any DrawAs ValueAdditional Attributes Points PolyLine one for each of nPoints PolyPoint one for each of nPoints Ellipsoid xSize, ySize, zSize two foci Box nPoints first for inner face, then outer face HyperCircle radius one center HyperPolygon width,nSides one center HelixSegment helixParms one start point or one end point Text string one center Joseph Perl HepRep: a Generic Interface for Event Display Representables

  12. Pick Granularity * * 1 1 HepRep Type HepRep Instance HepRep Primitive HepRep Point 1 * 1 * 1 * Name:String Version:String X, Y, Z:Float Since graphics engines become overloaded if there are too many separately pickableobjects, it is best to give the user client-side control of pick granularity. Pick GranularityWhat to handle as a single pickable objectExample pick object Type all prims of given Type all Tracks Instance all prims of given Type and Instance one Track SubType all prims of given Type, Inst, SubType all hits on one Track SubInstance all prims of given Type, Inst, SubType, SubInst one hit on one Track Primitive a single Primitive one HyperCircle Point a single Point one Point Joseph Perl HepRep: a Generic Interface for Event Display Representables

  13. Basic Download Method * Recursive structure with which the server can tell the client what Types (or Type.SubTypes) are known (version strings useful for telling when to load new versions of non-event data). HepRep KnownType 1 Name:String Version:String ServerThread +getKnownTypeList ( ) : HepRepKnownTypeList +getRepresentables (KnownType,...): HepRepType Client can ask server for all Representables of a given Type (or Type.SubType). Joseph Perl HepRep: a Generic Interface for Event Display Representables

  14. Additional Control Over the Download Client can ask for only those Representables of the given Type that pass a set of cuts on Attributes. HepRep AttName Name:String ServerThread +getRepresentables (KnownType, CutList, GetPoints, GetDrawAtts, GetNonDrawAtts, InvertAtts ) : HepRepType HepRep Cut Name:String Comparison:String Value:Any Client can control whether a particular download should include Draw Attributes, NonDraw Attributes and/or Points (even finer control is available via InvertAtts). • To display without picking or cuts, need Points and Draw Attributes. • To display with picking and cuts, need Points and all Attributes. • To enable picking and cuts after the event has already been downloaded, make an additional request only for NonDraw Attributes. • To display a SubType when the Parent Type is not actually to be displayed, need the Parent Type’s Attributes (for inheritance purposes) but not its Points. Joseph Perl HepRep: a Generic Interface for Event Display Representables

  15. HepRep: the Generic Interface Definition for HEP Event Display Representables The BaBar Collaboration is converting their existing WIRED Event Display Clientand CORBA Event Server to use HepRep. In BaBar, the client is in Java, the server is in C++ and the communications is byCORBA, but care has been taken to not tie the HepRep interface definition to anyparticular language specification or communications protocol. BaBar’s HepRep-capable event display client will be immediately usable by any othercollaboration that provides a HepRep-capable event server. Details: contact Joseph Perl, perl@slac.stanford.edu, or see SLAC-PUB-8332. Joseph Perl HepRep: a Generic Interface for Event Display Representables

More Related