Presentation is loading. Please wait.

Presentation is loading. Please wait.

1 GAUDI - The Software Architecture and Framework for building LHCb data processing applications Marco Cattaneo, CERN February 2000.

Similar presentations


Presentation on theme: "1 GAUDI - The Software Architecture and Framework for building LHCb data processing applications Marco Cattaneo, CERN February 2000."— Presentation transcript:

1 1 GAUDI - The Software Architecture and Framework for building LHCb data processing applications Marco Cattaneo, CERN February 2000

2 Marco Cattaneo, 7th February 2000LHCb - GAUDI2 Outline  Introduction  Design choices  GAUDI Architecture overview  Status  Conclusions

3 Marco Cattaneo, 7th February 2000LHCb - GAUDI3 Software Structure Frameworks Toolkits ReconstructionSimulation Analysis Foundation Libraries Triggers One main framework: GAUDI. Various specialised frameworks: visualisation, persistency, interactivity, simulation (Geant4), etc. Basic libraries: STL, CLHEP, etc. (Vocabulary) Applications implementing the physics algorithms.

4 Marco Cattaneo, 7th February 2000LHCb - GAUDI4 GAUDI project goals  Develop an Architecture and a Framework to be used at all stages of LHCb data analysis Trigger levels 2 and 3, simulation, reconstruction, analysis  Avoid fragmentation and duplication of computing effort Single development team across online and offline domains Identify common components, re-use Give users (physicists) a framework within which to develop applications Rapid transition away from FORTRAN to minimise legacy code A single framework used by all members of the collaboration  Transparent use of third-party components wherever possible or necessary GUI, persistency, simulation....

5 Marco Cattaneo, 7th February 2000LHCb - GAUDI5 Software development strategy  Start with small design team of 6-8 people architect, librarian, domain specialists with design/programming experience  Collect User Requirements and use-cases  Establish basic criteria for the overall design  Make technology choices for implementation of initial prototypes  Incremental approach to development. Release every ~4 months. Releases accompanied by complete documentation Development cycle driven by the users: priorities, feedback, etc.  Strategic decisions after thorough design review (~1/year)

6 Marco Cattaneo, 7th February 2000LHCb - GAUDI6 Principal design choices  Separation between “data” and “algorithms” Data objects primarily carry data, have only basic methods e.g. Tracking hits Algorithm objects primarily manipulate data e.g. Track fitter  Three basic categories of data: “event data” (obtained from particle collisions, real or simulated) “detector data” (structure, geometry, calibration, alignment,....) “statistical data” (histograms,....)  Separation between “transient” and “persistent” data. Isolate user code from persistency technology. Different optimisation criteria. Transient as a bridge between independent representations.

7 Marco Cattaneo, 7th February 2000LHCb - GAUDI GAUDI object diagram Converter Algorithm Event Data Service Persistency Service Data Files Algorithm Transient Event Store Detec. Data Service Persistency Service Data Files Transient Detector Store Message Service JobOptions Service Particle Prop. Service Other Services Histogram Service Persistency Service Data Files Transient Histogram Store Application Manager Converter

8 Marco Cattaneo, 7th February 2000LHCb - GAUDI8 Principal design choices (2)  Data store -centred (“blackboard”) architectural style. Algorithms as producers and consumers of data objects Minimal coupling between algorithms, allows independent development.  “User code” encapsulated in a few specific places: “Algorithms”: physics code “Converters”: convert data objects between representations  Well defined component “interfaces”, as “generic” as possible. Stable, shield clients from the (changing) implementation In C++, pure abstract class

9 Marco Cattaneo, 7th February 2000LHCb - GAUDI9 Interfaces ConcreteAlgorithm EventDataService IDataProviderSvc IHistogramSvc IMessageSvc IAlgorithm IProperty ObjectAObjectB Each component implements one or more interfaces Each component uses one or more interfaces of other components An Algorithm uses many Services DetectorDataService HistogramService MessageService ParticlePropertySvc IParticlePropertySvc ApplicationManager ISvcLocator

10 Marco Cattaneo, 7th February 2000LHCb - GAUDI10 Transient data store Algorithms Algorithm A Algorithm B Algorithm C Data T1 Data T2, T3 Data T2 Data T3, T4 Data T4 Data T5 Logical view An Algorithm knows only which data (type and name) it uses as input and produces as output. The only coupling between algorithms is via the data. The execution order of the sub-algorithms is the responsibility of the parent algorithm. A C B Parent Data T1 Data T2 Data T4 Data T3 Data T5 Physical view

11 Marco Cattaneo, 7th February 2000LHCb - GAUDI11 Services  Various services are provided to algorithms  Examples: Job Options service (configuration “card” files) Message reporting service Event/Detector/Histogram data service Event Selector Persistency and Conversion services User Interface (GUI) Particle property service... Particle Prop. Service Algorithm PP File IService IParticlePropertySvc IProperty

12 Marco Cattaneo, 7th February 2000LHCb - GAUDI12 Event Data Store (See Markus Frank’s talk, C153) Event Data Service Persistency Service Algorithm retrieveObject( “EcalDigits(3)”,...) registerObject( “key”,...) Direct reference Fetch() Store() creates Stores objects that can be used by other objects (services, algorithms). Retrieve objects if necessary Tree structure (file system) Identification by logical address (“/Event/RawEvent/Ecal”) Owns the objects and is responsible for their clean-up. Transient Event Store

13 Marco Cattaneo, 7th February 2000LHCb - GAUDI13 Persistency (See Markus Frank’s talk, C153) Event Data Service Persistency Service Zebra data Files Algorithm ZebraCnvSvc RootCnvSvc Root data Files Converter Zebra FZ Root I/O Transient Event Store Various technologies available in the same program: Objy, Root, Zebra,… Converters transform objects from one representation to another.

14 Marco Cattaneo, 7th February 2000LHCb - GAUDI14 Data Processing Application Editors Conversion services Algorithms Detector Description (See Radovan Chytracek’s talk, A155) Persistent Detector Description (DDDB) DetElem Geom Calib Geom Slow Editors Transient detector store DetElem Geom Calib Slow Algorithms Conversion services Projection view: version & event time Other representations Update persistency Detector Data Producers

15 Marco Cattaneo, 7th February 2000LHCb - GAUDI15 Visualisation Transient Data Store Conversion Service Representations Store (graphical, textual) Converter Data Item Selector User Interface Selects objects in store

16 Marco Cattaneo, 7th February 2000LHCb - GAUDI16 Package group Package dependency optional Sub-division into packages is an architectural problem. Important consequences for: compilation time link dependencies configuration management executable size... Dependencies between packages must be approved by the architect Avoid circular dependencies Packages Gaudi (foundations) LHCbEvent (event model) HbookCnv (converters) SicbCnv (converters) RootCnv (converters) Applications LHCbAlg (algorithms) DetDesc (detect. model) DetCnv (converters) Futio (ZEBRA) RIO CernLib CLHEP STL GAUDI Framework

17 Marco Cattaneo, 7th February 2000LHCb - GAUDI17 Implementation Implementation (see Florence Ranjard's talk, F151)  Platforms: WNT, Linux, IBM AIX, HP-UX  Tools and Libraries:

18 18 Work in progress:  Integration of GEANT4  Visualisation, event display  Algorithms and tools for data analysis  Java evaluation  Collaboration with AIDA (see Andreas Pfeiffer’s presentation, F82) Definition of interfaces  Ongoing discussions with other experiments  Deployment for physics applications: migration of reconstruction test beam analysis tracking, RICH pattern recognition ECAL geometry etc.

19 Marco Cattaneo, 7th February 2000LHCb - GAUDI19 Conclusions  We believe it is fundamental to define an architecture And to provide a framework which implements the architecture Ensures adaptability, maintainability and resilience against change. GAUDI is the LHCb architecture and framework  Physicists have started to enjoy the pain! Many new development activities entirely within Gaudi Ongoing migration of existing code to Gaudi framework  We welcome advice, criticism, collaboration http://lhcb.cern.ch/computing/Components/html/GaudiMain.html

20 20 Software Project Organisation Support Facilities CPU farms Desktop Storage Network System Man. Vendors IT-API.. Vendors IT-SD Vendors, IT-API Support Software SDE Process Quality Librarian Training Webmaster MM Build Frameworks Architecture, Components, Integration technology, Libraries and toolkits A Reconstruction M Simulation M Analysis M Controls M Control Room M Assemble DAQ M Steering Group MM C Technical Review EM A... Arch. Review MA E... M A C E Coordinator Architect Project Manager Project Engineer

21 21 Project history  Sep ‘98 - architect appointed, design team (6 people) constituted  Nov 25 ‘98 - external architecture review objectives, architecture design document, URD, scenarios  Feb 8 ‘99 - first GAUDI release first software week, presentations, tutorials plan second release (together with users) expand GAUDI team  May 30 ‘99 - second GAUDI release second software week, plan third release with users, expand team.  Nov 23 ‘99 - third GAUDI release and software week plan deployment for production applications  Spring ‘00 - second external review

22 22 Migration Strategy  Objective: all applications exclusively in OO  Transition phase Incorporate existing reconstruction and analysis programs in GAUDI (wrap FORTRAN) Split existing program into independent algorithms Develop an OO event model, write converters to populate it from the FORTRAN banks Incorporate new OO algorithms developed exclusively in GAUDI e.g. Tracking pattern recognition Write converters to make the results available to the FORTRAN world  Many converters in both directions, COMMON blocks etc.  Hybrid phase C++ and FORTRAN coexist in a single reconstruction program ; Two detector descriptions, two cards files, doubled memory use, which output format? Gradually replace FORTRAN


Download ppt "1 GAUDI - The Software Architecture and Framework for building LHCb data processing applications Marco Cattaneo, CERN February 2000."

Similar presentations


Ads by Google