Download presentation
Presentation is loading. Please wait.
Published byBlanche Morrison Modified over 8 years ago
1
Talk
2
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli ROME Wednesday Seminar Presented by Matthias Schneebeli a universally applicable analysis framework generator
3
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Index Short introduction to ROOT Data acquisition/analysis Introduction to the ROME Environment o Objects inside ROME Projects o The code generation mechanism Monitoring Tools o Argus o Roody
4
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Short introduction to ROOT
5
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli What’s ROOT ? ROOT is an object oriented HEP analysis framework It provides class libraries for o handling and analyzing large amount of data o data visualization o Monte Carlo, parallel processing, …
6
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Three User Interfaces GUI windows, buttons, menus Root Command line CINT (C++ interpreter) Macros, applications, libraries (C++ compiler and interpreter) int main() { TH1F *h; h = new TH1F(“h“); h->Fill(1); h->Draw(); TBrowser t; }
7
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli ROOT vs. PAW Regular grammar (C++) on command line Single language (compiled and interpreted) Object Oriented (use your class in the interpreter) Advanced Interactive User Interface Object I/O including Schema Evolution 3-d interfaces with OpenGL and X3D. Well Documented code. HTML class descriptions for every class.
8
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Root > float x=5, y=7; Root > x*sqrt(y) (double)1.322875655532e+01 Root > TF1 fl(“fl”,”sin(x)/x”,0,10) Root > fl.Draw() Example of a ROOT interactive session
9
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Histogram Views All these plots can be rotated with the mouse
10
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Data acquisition/analysis
11
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli DAQ Setup Event buffer LoggerAnalyzer Run control Trigger Front-end Histogram display VME CAMAC Tape Back-end computer Office computers WWW ROME Argus, Roody
12
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Introduction to ROME
13
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Framework Requirements Object oriented Program should deal with objects, not with single values. Modular Possibility to easy exchange calculation modules. Universal The framework should be usable by as many experiments as possible. Easy to use The user should write as less and as simple code as possible.
14
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli ROME Objects Folders Data objects in memory Tasks Calculation objects Trees Data objects saved to disc Histograms Graphical data objects Steering Parameters Framework steering Midas Banks Midas raw data objects ROME Objects : Only 6 different objects. Access methods have same naming conventions
15
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Interconnections Folders Tasks Fill Read Trees Fill Flag Histograms Fill Disk (Output) Write (ROOT) Disk (Input) Read (any Format)
16
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli ADC Bank Value 1 Value 2... DMND Bank Value 1 Value 2... From Banks to Folders PMT Folder ADC TDC X x PMT Folder ADC TDC X x PMT Folder ADC TDC HV demand HV measured HV current Scaler Readout values of a sub-detectors Sub-detector with all it’s readout values TDC Bank Value 1 Value 2... SCLR Bank Value 1 Value 2... MSRD Bank Value 1 Value 2... CRNT Bank Value 1 Value 2...
17
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli ADC counts TDC header chn./value Pedestal subtraction Counts -> Charge Decoding (chn./crate/… -> number) Offset correction Mapping ADC/TDC -> counter Raw data *.root Decoded data *.root Object data *.root Optional analysis of decoded data High level analysis Task Banks ROME folder Proposed Analysis Structure ADC charge TDC time Hit charge time HV scaler Hit charge time HV scaler Hit charge time HV scaler
18
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Modularity ROME is based on Tasks and Folders. Tasks are independent calculation modules. The interface to the tasks are folders. Tasks can be combined or exchanged arbitrarily, as long as the interface matches. E.g. one can execute different calibration tasks without re-linking. A1A2B1A3B2 A4 Possible even during runtime
19
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli ROME is clearly separated into an experiment independent part of the framework e.g. Event loop, IO, Database access. Works for all event based experiments an experiment dependent part of the framework e.g. Data structure, program structure Summarized in a framework definition file. Translated into c++ code by the ROMEBuilder. the calculation code Has to be filled in by the experimenter Universality Part of ROME Generated by ROMEBuilder Written by the user
20
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli The framework generation ROMEBuilder o Translation program. o Reads in a XML framework definition file and translates this information into c++ code. o Links the generated project. o Documents the generated project. o Like the MAKE command in ODBEdit ROME classes Summarization XML File ROME classes Exp. classes ROMEBuilder Executable Documentation Project ROME Environment Add calculation code
21
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Introduction to XML Extensible Markup Language (XML) Standardized ascii format Tree structure Syntax is similar to html Ferrari Red Fiat Blue Bianchi White XSD File XML File
22
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli XML Project Definition File Folder definitions … Task definitions … Tree definitions … Steering Parameters definitions … Midas Bank definitions … Folder Classes Analyzer Class Task Classes
23
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Folders Folder Name Field Name 1 Field Type 1 Field Name 2 Field Type 2 XML File [Field Type 1] Get[Folder Name]()->Get[Field Name 1](); void Get[Folder Name]()->Set[Field Name 1]([Field Type 1] value); Code
24
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Task Name … XML File void [Experiment Shortcut]T[Task Name]::Init() { } void [Experiment Shortcut]T[Task Name]::BeginOfRun() { } void [Experiment Shortcut]T[Task Name]::Event() { } void [Experiment Shortcut]T[Task Name]::EndOfRun() { } void [Experiment Shortcut]T[Task Name]::Terminate() { } Code Tasks
25
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Easy to use User can summarize the experiment dependent part of the framework in a XML file. The XML file is then translated by the romebuilder into c++ code. The user adds only calculation code to predefined event methods of the tasks. Calculation code is ‘c-code’.
26
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Benefit of a generated Framework Consistent Program Structure o All classes look the same o Better readability Less Handwritten Code o Code of a class is written once (in the builder) and reproduced many times Easier Maintenance o Modification are done once (in the builder) and then available in the whole framework
27
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Configuration File 1001,1002-1004 offline midas Task 1 yes/no Value 123 XML File
28
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Program structure Start read configuration file BOR EOR Event read database fill tree read raw data write tree End of Analysis Start ROOT interactive session
29
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Run Program C:\Sample> ROMEBuilder.exe sample.xml link messages C:\Sample> XYZ q : Terminates the program e : Ends the program s : Stops the program r : Restarts the program c : Continuous Analysis o : Step by step Analysis g : Run until event # i : Root interpreter root [0] TBrowser t root [1] cout GetPMTData()->GetADC() Windows
30
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Monitoring Tools
31
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Monitoring ROME Objects ROME can distribute objects over a socket interface. Any third party application can access and even modify ROME objects. The distribution of the objects goes over the network. Used for monitoring/displaying ROME objects Users can display online histograms. E.g. at home.
32
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli ARGUS Written by Ryu Sawada Experiment independent GUI framework Helps to write an full experiment dependent event display Provides connection to oROME oMidas Analyzer oSQL Database, Midas ODB
33
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Socket Connections Argus Network MIDAS Analyzer ROME Database
34
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli ARGUS Samples
35
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli ROODY Written at the Triumf, Vancouver Histogram Display Final application (unlike ARGUS) but only for histograms Provides connection to oROME oMidas Analyzer
36
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli ROODY Samples
37
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Summary ROME is a framework generator. Only 6 different objects with up to 6 access methods. All classes are generated, only event methods have to be written. No knowledge about object oriented programming is needed. Folders and Tasks support a very clear program structure. Modularity : tasks can be easily exchanged even at runtime. Socket connection to third party applications
38
Sample
39
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Sample Experiment
40
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Sample Overview 2 Folders o PMTData o Calib(Data base) 2 Tasks o ReadMidas o ADCCalib 1 Midas Bank o ADC0
41
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli XML Definition File I PMTData 228 ADC Float_t PMTCalib 228 true ADCPedestal Float_t /RunCatalog(id=#)/LPCalib[0,227]/pedestal sample.xml
42
Paul Scherrer Institut 5232 Villigen PSI ROME / 11.5.2004 / Matthias Schneebeli XML Definition File II ReadMidas ADCCalib ADCHisto TH1F 228 500 0 500 ADC0 unsigned short sample.xml
43
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Read Midas Task void XYZTReadMidas::Event() { for (int i=0;i<228;i++) { Float_t adcValue = gAnalyzer->GetADC0BankAt(i); gAnalyzer->GetPMTDataAt(i)->SetADC(adcValue); } XYZTReadMidas.cpp
44
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli ADC Calibration Task void XYZTADCCalib::Event() { for (int i=0;i<228;i++) { float pmtData = gAnalyzer->GetPMTDataAt(i)->GetADC(); float pedestal = gAnalyzer->GetCalibAt(i)->GetADCPedestal(); FillADCHistoAt(i,pmtData - pedestal); } void XYZTADCCalib::EndOfRun() { for (int i=0;i<228;i++) { DrawADCHistoAt(i); } XYZTADCCalib.cpp
45
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Run Program C:\Sample> ROMEBuilder.exe sample.xml link messages C:\Sample> XYZ q : Terminates the program e : Ends the program s : Stops the program r : Restarts the program c : Continuous Analysis o : Step by step Analysis g : Run until event # i : Root interpreter root [0] TBrowser t root [1] cout GetPMTData()->GetADC() Windows
46
ROME vs. AliROOT
47
Paul Scherrer Institut 5232 Villigen PSI ROME / 11.5.2004 / Matthias Schneebeli Comparison of AliROOT and ROME
48
Paul Scherrer Institut 5232 Villigen PSI ROME / 11.5.2004 / Matthias Schneebeli ROME vs. AliROOT ROMEAliROOT Usable for MEG ?Used by the ALICE collaboration. (Maybe also others) Used for the LP. Midas Analyzer used for PiBeta. Needed modifications ?Classes have to be modified to match the data structure. Calculation code has to be rewritten. Classes holding data structure have to be generated. Calculation code has to be written. Requirements on the user ?Good knowledge of C++ and object oriented programming. Knowledge of C, no knowledge about OO- programming needed. Question
49
Paul Scherrer Institut 5232 Villigen PSI ROME / 11.5.2004 / Matthias Schneebeli Modifications AliROOTFeatures Control ClassesLittle modifications.No changes. Detector Classes (Geometry, clustering, reconstruction, …) Have to be completely rewritten. Classes can only be used as templates. Data structure will be generated. Calculations have to be written. Virtual Monte CarloLittle changes.Can be added easily (ROOT feature). MonitorNeeds modifications.LP monitor. ROME’s online monitor can be used offline! Data baseNeeds modifications.No changes. ROME Info about AliROOT form Federico Carminati (AliROOT Offline Project Leader)
50
Paul Scherrer Institut 5232 Villigen PSI ROME / 11.5.2004 / Matthias Schneebeli Differences between ROME and AliROOT ROMEAliROOT Objects are classes containing calculations and data. Objects are composite items. Calculations and data are strictly separated. C D AB A1A2B1A3B2 A’ A4 Has to be relinked Tasks have a clearly defined interface The interfaces are automatically documented by the romebuilder Possible even during runtime
51
Paul Scherrer Institut 5232 Villigen PSI ROME / 11.5.2004 / Matthias Schneebeli Monitors AliROOT LPMonitor
52
Paul Scherrer Institut 5232 Villigen PSI ROME / 11.5.2004 / Matthias Schneebeli Summary Both frameworks need about the same amount of work to adopt for MEG. The only question is, which framework is better suited for the MEG collaboration? oLittle experienced programmers can use ROME. oROME is easier to use. oROME generates a framework.
53
Paul Scherrer Institut 5232 Villigen PSI ROME / 11.5.2004 / Matthias Schneebeli Comments form the ALICE Collaboration From a mail of Federico Carminati (Offline Project Leader) : “AliRoot was not meant to be a ‘framework’ for experiments” Out of 51 modules: ElectroMagnetic calorimeter code. To be discarded AliRoot main program, probably to be modified Methods for the production of raw data. To be modified Analysis classes, to be modified, possibly lightly Online monitoring code. May be interesting, to be modified Main steering classes, needs modification Display Code. Has to be modified Interface with the FLUKA MC. Can be reused Event generator interfaces. To be modified
54
Additional Slides
55
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli XML Editors XMLSpy -Table Format -Commercial Software (50 Euro) -Only for Windows EditiX -Nice Tree Format -Commercial Software (30 Euro) -Windows, Linux, Mac ROME works with any Editor
56
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Installation Installation of ROOT Installation of MIDAS (only online, Linux) [~]$ setenv ROMESYS ~/ROME [~]$ setenv PATH $ROMESYS/bin:$PATH [~]$ cvs checkout ROME [~/ROME]$ make [../MyExp]$ romebuilder myExp.xml [-o Output Path] [~/MyExp]$ progname Linux CVS checkout of ROME Define environment variable ROMESYS Define environment variable ‘Path’ C:\> set ROMESYS=C:/ROME C:\> set Path=%Path%;%ROMESYS%/bin C:\> cvs checkout ROME C:\ROME> nmake –f Makefile.win C:\MyExp> ROMEBuilder.exe myExp.xml –v [–o Output Path] C:\MyExp> progname Windows
57
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Advantages of Proposed Analysis Structure High level analysis accesses data in objects –no knowledge of cable mapping or ADC/TDC decoding necessary ADC/TDC decoding is decoupled from mapping and high level analysis –If ADC/TDC module is changed, only decoding task needs to be changed –If counter is reconnected to different ADC/TDC, only mapping task needs to be changed Data can be stored/retrieved between different tasks in ROOT format –Analyze raw data –Analyze decoded data –Analyze object data
58
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli ROME vs. Midas Analyzer ROMEMidas Analyzer Banks -> Arrays or structures Folders -> Objects (Classes) odbedit> make -> experim.h containing data structure romebuilder -> classes containing data structure and access methods Midas required for online and offlineMidas not needed for offline Calibration and configuration data in ODBCalibration and configuration data in mySQL, XML,... User code added to BOR,EVENT,EOR functions User code added to BeginOfRun, Event, EndOfRun functions Input format : midasInput format : midas, root Output format : midas, rootOutput format : root
59
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Features Tool for Event based Data Analysis Fully Object Oriented Root based Full connection to the Midas Environment Online and Offline Based on Tasks and Folders for an easy Data and Program Structure Experiment independent Base Classes Experiment dependent Classes are generated out of simple XML-Files The Users write only experiment specific code (physics) Administrative code is implemented in the generated code Self Documenting Code Self Linking Project
60
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli ROME classes Tasks Classes in the Generated Project The generated classes are : Task classes o Implement 5 user methods : Init(), BeginOfRun(), Event(), EndOfRun(), Terminate(). Folder classes o Define how the data is stored. Analyzer class o Main class. The Analyzer provides all user-methods. IO class o The IO handles all input and output. Folders ROMEEventLoop Analyzer Folders Steering fAnalyzer IO Trees Data base
61
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Trees XML File
62
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli General Steering Parameters XML File [Type 1] GetGSP()->Get[Field 1]() [Type 2] GetGSP()->Get[SubClass]()->Get[Field 2]() Code XML File
63
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Midas Banks XML File [Type 1] Get[Bank 1]BankAt(int index) Int Get[Bank 1]BankEntries() [Structure Name]* Get[Bank 2]BankAt(int index) Int Get[Bank 2]BankEntries() e.g. : [Type 2] Get[Bank 2]BankAt(int index)->[Field 2] Code Simple BanksStructured Banks
64
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Comparing to Midas ASUM - Sum - Average In the Online Data Base : In the XML-File : Midas Library is not used for offline analysis
65
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli class [Experiment Shortcut][Folder Name] : public TObject { protected: [Field Type 1] f[Field Name 1]; // [Comment 1] public: [Experiment Shortcut][Folder Name]([Field Type 1] value1=[Init Value 1] ) { f[Field Name 1] = value1; }; [Field Type 1] Get[Field Name 1]() { return f[Field Name 1]; }; void Set[Field Name 1]([Field Type 1] value1) { f[Field Name 1] = value1; }; ClassDef([Experiment Shortcut][Folder Name],[Version Number]) }; Code Generated Code XML File
66
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Data base SQL Data base see Ryu’s presentation XML data base If no network connection available
67
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Read and Write Data Input Data o Root files o Midas files o Online buffer o Data base Output Data o Root files o Database Read by the Framework. Data accessed via Midas Bank access methods. Read and filled to the Folder by the Framework Written by the Framework, can be flagged Written with : fAnalyzer->Write[Folder]DataBase(this);
68
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Summary Structure of the framework is defined in XML-files All code is generated, except the physical calculations The framework provides access functions for the user SQL Data base XML Configuration file
69
Paul Scherrer Institut 5232 Villigen PSI ROME / 20.4.2005 / Matthias Schneebeli Class Structure main Analyzer gAnalyzer ConfigFolders Tasks DB-Classes DAQ-Systems EventLoop
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.