SlideShare a Scribd company logo
1 of 72













9 years !!




















Appears 4s
When executing root
To see the list of all
contributors, select the
HELP button in the browser
or canvas.
The window auto scrolls
Until you click on it.













Mails to roottalk + mails to rootdev and root-bugs
PLEASE:
-Always indicate a mail subject
-Always indicate which version of ROOT and which OS
-Send a x.tar.gz file instead of many files in attachement
+ mails about-root-fnal
+ direct mails to team members
+ spam mail




We have implemented more than 80% of our plan announced
at the previous workshop in October 2002. See:
ftp://root.cern.ch/root/R2002/future.pdf
We have implemented many new features not foreseen
in Oct 2002







Plugin.TFile: ^rfio: TRFIOFile RFIO "TRFIOFile(const char*,Option_t*,const char*,Int_t)"
+Plugin.TFile: ^castor: TCastorFile RFIO "TCastorFile(const char*,Option_t*,const
char*,Int_t,Int_t)"
+Plugin.TFile: ^dcache: TDCacheFile DCache "TDCacheFile(const char*,Option_t*,const char*,Int_t)"
+Plugin.TFile: ^chirp: TChirpFile Chirp "TChirpFile(const char*,Option_t*,const char*,Int_t)"
Plugin.TSystem: ^rfio: TRFIOSystem RFIO "TRFIOSystem()"
Plugin.TSQLServer: ^mysql: TMySQLServer MySQL "TMySQLServer(const char*,const char*,const char*)"
+Plugin.TSQLServer: ^pgsql: TPgSQLServer PgSQL "TPgSQLServer(const char*,const char*,const char*)"
+Plugin.TSQLServer: ^sapdb: TSapDBServer SapDB "TSapDBServer(const char*,const char*,const char*)"
+Plugin.TSQLServer: ^oracle: TOracleServer Oracle "TOracleServer(const char*,const char*,const char*)"
Plugin.TGrid: ^alien TAlien RAliEn "TAlien(const char*,const char*,const char*,const char*)"
Plugin.TVirtualPad: * TPad Gpad "TPad()"
Plugin.TVirtualHistPainter: * THistPainter HistPainter "THistPainter()"
Plugin.TVirtualTreePlayer: * TTreePlayer TreePlayer "TTreePlayer()"
Plugin.TVirtualTreeViewer: * TTreeViewer TreeViewer "TTreeViewer(const TTree*)"
Plugin.TVirtualGeoPainter: * TGeoPainter GeomPainter "TGeoPainter()"
Plugin.TVirtualUtil3D: * TUtil3D Graf3d "TUtil3D()"
Plugin.TVirtualUtilHist: * TUtilHist Hist "TUtilHist()"
Plugin.TVirtualUtilPad: * TUtilPad Gpad "TUtilPad()"
Plugin.TVirtualFitter: Minuit TFitter Minuit "TFitter(Int_t)"
+Plugin.TVirtualFitter: Fumili TFumili Fumili "TFumili(Int_t)"
Plugin.TVirtualPS: ps TPostScript Postscript "TPostScript()"
+Plugin.TVirtualPS: svg TSVG Postscript "TSVG()"
Plugin.TViewerX3D: x11 TViewerX3D X3d "TViewerX3D(TVirtualPad*,Option_t*)”
+Plugin.TViewerX3D: qt TQtViewerX3D QtX3d "TQtViewerX3D(TVirtualPad*,Option_t*)”



Root > .x file.C++
Root > .x file.C+
Root > .x file.C++g

















#include “TObject.h”
Class MyClass : public TObject {
int i,j,k;
ClassDef(MyClass,1)
};
TTree T(“T”,”test foreign”)
MyClass *a = new MyClass;
T.Branch(“event”,”MyClass”,&a);
Class MyClass {
int i,j,k;
};















void FitBench(Int_t npass=100) {
TCanvas *c1 = new TCanvas("c1");
c1->Divide(1,2);
fitFcn = new TF1("fitFcn",fitFunction,0,3,6);
fitFcn->SetNpx(200);
gStyle->SetOptFit();
gStyle->SetStatY(0.6);
//with Minuit
c1->cd(1);
TVirtualFitter::SetDefaultFitter("Minuit");
DoFit(npass);
//with Fumili
c1->cd(2);
TVirtualFitter::SetDefaultFitter("Fumili");
DoFit("Fumili",npass);
}
Choose Fitter at run time
or via system.rootrc


TCanvas c;
Double_t x, y, z, P = 6.;
Int_t np = 200;
TGraph2D dt;
TRandom r;
for (Int_t N=0; N<np; N++) {
x = 2*P*(r.Rndm(N))-P;
y = 2*P*(r.Rndm(N))-P;
z = (sin(x)/x)*(sin(y)/y)+0.2;
dt.SetPoint(N,x,y,z);
}
gStyle->SetPalette(1);
dt.Draw("surf1");
dt.Draw(“same p0”);




























See Philippe
See Eddy
See Gerri
See Fons & Maarten
See Ilka











see BaBar talks
see Andrei Gheata /Alice
see Valeri Fine/STAR
see Ilka
see Fons
see Wim /Atlas/LBL
#include “Rtypes.h”
class MyClass {
int i,j,k;
ClassDef(MyClass,1)
};
....
bytecount
version
ObjectN
bytecount
version
objectN+1
....
class MyClass {
int i,j,k;
};
....
Bytecount
0
checksum
ObjectN
Bytecount
0
checksum
objectN+1
....
4 bytes
2 bytes
2 bytes
4 bytes
4 bytes
buffer
buffer
foreign class

















1-Toggle
Editor
mode
2-Click
On the object
to be
edited
3-Edit
object
attributes
Type CRTL/S anywhere on a widget
To generate the C++ code for this widget
Then do
root > .x guisave.C







Modelling
Visualisation
Interactivity
Where am I?
Distance to boundary
Closest boundary
Persistency



TDecompBase TDecompChol TDecompLU TDecompQRH
TDecompSVD TMatrix TMatrixD TMatrixDBase
TMatrixDCramerInv TMatrixDEigen TMatrixDLazy TMatrixDSym
TMatrixDSymEigen TMatrixDUtils TMatrixF TMatrixFBase
TMatrixFCramerInv TMatrixFLazy TMatrixFSym TMatrixFUtils
TVector TVectorD TVectorF


























root > .x script.C
root > .x script.C+
root > gSystem->Load(“libClasses”)




http://alcaraz.home.cern.ch/alcaraz/PythonRoot/
http://alcaraz.home.cern.ch/alcaraz/RubyRoot/
Welcome to ruby-root
News
19/02/2004: ruby-root v0.0.1 is released!
Added support for singleton methods.
Download: ruby-root v0.0.1
11/02/2004: ruby-root v0.0.0-crowd is released! ruby-root is
still at an early development stage. This release is meant
only for getting feedback from users and not for serious
development.
You can download ruby-root: ruby-root v0.0.0 crowd
Don't forget to read first the Installation Guide, as well
as the User's Guide.
Elias Athanasopoulos (HEPA Lab,
University of Athens)
http://null.edunet.uoa.gr/~elathan/rr/
root ruby









































SEAL Dictionary: Reminder



October 2003
November 2003
February 2004














More Related Content

Similar to ROOT Cause Analysis RCA Workshop maint.ppt

Lex tool manual
Lex tool manualLex tool manual
Lex tool manual
Sami Said
 
filesHeap.h#ifndef HEAP_H#define HEAP_H#includ.docx
filesHeap.h#ifndef HEAP_H#define HEAP_H#includ.docxfilesHeap.h#ifndef HEAP_H#define HEAP_H#includ.docx
filesHeap.h#ifndef HEAP_H#define HEAP_H#includ.docx
ssuser454af01
 
c++ program for Railway reservation
c++ program for Railway reservationc++ program for Railway reservation
c++ program for Railway reservation
Swarup Kumar Boro
 

Similar to ROOT Cause Analysis RCA Workshop maint.ppt (20)

The Ring programming language version 1.8 book - Part 95 of 202
The Ring programming language version 1.8 book - Part 95 of 202The Ring programming language version 1.8 book - Part 95 of 202
The Ring programming language version 1.8 book - Part 95 of 202
 
Linux_C_LabBasics.ppt
Linux_C_LabBasics.pptLinux_C_LabBasics.ppt
Linux_C_LabBasics.ppt
 
Lex tool manual
Lex tool manualLex tool manual
Lex tool manual
 
Linux
LinuxLinux
Linux
 
Cassandra v3.0 at Rakuten meet-up on 12/2/2015
Cassandra v3.0 at Rakuten meet-up on 12/2/2015Cassandra v3.0 at Rakuten meet-up on 12/2/2015
Cassandra v3.0 at Rakuten meet-up on 12/2/2015
 
Network simulator 2
Network simulator 2Network simulator 2
Network simulator 2
 
What's new in Python 3.11
What's new in Python 3.11What's new in Python 3.11
What's new in Python 3.11
 
The Ring programming language version 1.5.3 book - Part 25 of 184
The Ring programming language version 1.5.3 book - Part 25 of 184The Ring programming language version 1.5.3 book - Part 25 of 184
The Ring programming language version 1.5.3 book - Part 25 of 184
 
Oczyszczacz powietrza i stos sieciowy? Czas na test! Semihalf Barcamp 13/06/2018
Oczyszczacz powietrza i stos sieciowy? Czas na test! Semihalf Barcamp 13/06/2018Oczyszczacz powietrza i stos sieciowy? Czas na test! Semihalf Barcamp 13/06/2018
Oczyszczacz powietrza i stos sieciowy? Czas na test! Semihalf Barcamp 13/06/2018
 
filesHeap.h#ifndef HEAP_H#define HEAP_H#includ.docx
filesHeap.h#ifndef HEAP_H#define HEAP_H#includ.docxfilesHeap.h#ifndef HEAP_H#define HEAP_H#includ.docx
filesHeap.h#ifndef HEAP_H#define HEAP_H#includ.docx
 
The Ring programming language version 1.5.2 book - Part 7 of 181
The Ring programming language version 1.5.2 book - Part 7 of 181The Ring programming language version 1.5.2 book - Part 7 of 181
The Ring programming language version 1.5.2 book - Part 7 of 181
 
The Ring programming language version 1.10 book - Part 92 of 212
The Ring programming language version 1.10 book - Part 92 of 212The Ring programming language version 1.10 book - Part 92 of 212
The Ring programming language version 1.10 book - Part 92 of 212
 
Language is C++ I'm having trouble making my code meet these requireme.docx
Language is C++ I'm having trouble making my code meet these requireme.docxLanguage is C++ I'm having trouble making my code meet these requireme.docx
Language is C++ I'm having trouble making my code meet these requireme.docx
 
How to Build a Telegraf Plugin by Noah Crowley
How to Build a Telegraf Plugin by Noah CrowleyHow to Build a Telegraf Plugin by Noah Crowley
How to Build a Telegraf Plugin by Noah Crowley
 
Building a Telegraf Plugin by Noah Crowly | Developer Advocate | InfluxData
Building a Telegraf Plugin by Noah Crowly | Developer Advocate | InfluxDataBuilding a Telegraf Plugin by Noah Crowly | Developer Advocate | InfluxData
Building a Telegraf Plugin by Noah Crowly | Developer Advocate | InfluxData
 
Tibet 5.0 / CouchDB
Tibet 5.0 / CouchDBTibet 5.0 / CouchDB
Tibet 5.0 / CouchDB
 
c++ program for Railway reservation
c++ program for Railway reservationc++ program for Railway reservation
c++ program for Railway reservation
 
Railway reservation
Railway reservationRailway reservation
Railway reservation
 
How to develop a rich terminal UI application
How to develop a rich terminal UI applicationHow to develop a rich terminal UI application
How to develop a rich terminal UI application
 
Basic NLP with Python and NLTK
Basic NLP with Python and NLTKBasic NLP with Python and NLTK
Basic NLP with Python and NLTK
 

More from Madan Karki

21st century mfg not without the basics.ppt
21st century mfg not without the basics.ppt21st century mfg not without the basics.ppt
21st century mfg not without the basics.ppt
Madan Karki
 
I-Factory - The innovation necessity.pptx
I-Factory - The innovation necessity.pptxI-Factory - The innovation necessity.pptx
I-Factory - The innovation necessity.pptx
Madan Karki
 
final ppt ecommerce online buying & selling.pptx
final ppt ecommerce online buying & selling.pptxfinal ppt ecommerce online buying & selling.pptx
final ppt ecommerce online buying & selling.pptx
Madan Karki
 
Storage & warehouse planning - Inventory .ppt
Storage & warehouse planning - Inventory .pptStorage & warehouse planning - Inventory .ppt
Storage & warehouse planning - Inventory .ppt
Madan Karki
 
storage system and Warehouse Planning.ppt
storage system and Warehouse Planning.pptstorage system and Warehouse Planning.ppt
storage system and Warehouse Planning.ppt
Madan Karki
 
Dairy development activities in country.pptx
Dairy development activities in country.pptxDairy development activities in country.pptx
Dairy development activities in country.pptx
Madan Karki
 
Indian Dairy Industry Present Status and.ppt
Indian Dairy Industry Present Status and.pptIndian Dairy Industry Present Status and.ppt
Indian Dairy Industry Present Status and.ppt
Madan Karki
 
Marketing of Milk & Dairy status India.pptx
Marketing of Milk & Dairy status India.pptxMarketing of Milk & Dairy status India.pptx
Marketing of Milk & Dairy status India.pptx
Madan Karki
 
Diagnosing Organizational Effectiveness.pptx
Diagnosing Organizational Effectiveness.pptxDiagnosing Organizational Effectiveness.pptx
Diagnosing Organizational Effectiveness.pptx
Madan Karki
 
Competency-based Human Resource Management.pptx
Competency-based Human Resource Management.pptxCompetency-based Human Resource Management.pptx
Competency-based Human Resource Management.pptx
Madan Karki
 
cement industry in India by T. Sumitha.pptx
cement industry in India by T. Sumitha.pptxcement industry in India by T. Sumitha.pptx
cement industry in India by T. Sumitha.pptx
Madan Karki
 
Choosing the best strategy qspm matrix.pptx
Choosing the best strategy qspm matrix.pptxChoosing the best strategy qspm matrix.pptx
Choosing the best strategy qspm matrix.pptx
Madan Karki
 
BCG Matrix by Raunak Strategic Management.ppt
BCG Matrix by Raunak Strategic Management.pptBCG Matrix by Raunak Strategic Management.ppt
BCG Matrix by Raunak Strategic Management.ppt
Madan Karki
 
Cement clinker coolers perf & efficiency.pptx
Cement clinker coolers perf & efficiency.pptxCement clinker coolers perf & efficiency.pptx
Cement clinker coolers perf & efficiency.pptx
Madan Karki
 
Cement Industry in India by Saurabh.pptx
Cement Industry in India by Saurabh.pptxCement Industry in India by Saurabh.pptx
Cement Industry in India by Saurabh.pptx
Madan Karki
 
Strategy Formulation 29th March 2024.pptx
Strategy Formulation 29th March 2024.pptxStrategy Formulation 29th March 2024.pptx
Strategy Formulation 29th March 2024.pptx
Madan Karki
 
Safety Occupational Health & Environment SHE.ppt
Safety Occupational Health & Environment SHE.pptSafety Occupational Health & Environment SHE.ppt
Safety Occupational Health & Environment SHE.ppt
Madan Karki
 
INTERNAL AUDIT - of Cement Industry.pptx
INTERNAL AUDIT - of Cement Industry.pptxINTERNAL AUDIT - of Cement Industry.pptx
INTERNAL AUDIT - of Cement Industry.pptx
Madan Karki
 
Strategy Formulation 29th March 2024.pptx
Strategy Formulation 29th March 2024.pptxStrategy Formulation 29th March 2024.pptx
Strategy Formulation 29th March 2024.pptx
Madan Karki
 

More from Madan Karki (20)

21st century mfg not without the basics.ppt
21st century mfg not without the basics.ppt21st century mfg not without the basics.ppt
21st century mfg not without the basics.ppt
 
I-Factory - The innovation necessity.pptx
I-Factory - The innovation necessity.pptxI-Factory - The innovation necessity.pptx
I-Factory - The innovation necessity.pptx
 
final ppt ecommerce online buying & selling.pptx
final ppt ecommerce online buying & selling.pptxfinal ppt ecommerce online buying & selling.pptx
final ppt ecommerce online buying & selling.pptx
 
Storage & warehouse planning - Inventory .ppt
Storage & warehouse planning - Inventory .pptStorage & warehouse planning - Inventory .ppt
Storage & warehouse planning - Inventory .ppt
 
storage system and Warehouse Planning.ppt
storage system and Warehouse Planning.pptstorage system and Warehouse Planning.ppt
storage system and Warehouse Planning.ppt
 
Dairy development activities in country.pptx
Dairy development activities in country.pptxDairy development activities in country.pptx
Dairy development activities in country.pptx
 
Indian Dairy Industry Present Status and.ppt
Indian Dairy Industry Present Status and.pptIndian Dairy Industry Present Status and.ppt
Indian Dairy Industry Present Status and.ppt
 
Marketing of Milk & Dairy status India.pptx
Marketing of Milk & Dairy status India.pptxMarketing of Milk & Dairy status India.pptx
Marketing of Milk & Dairy status India.pptx
 
Diagnosing Organizational Effectiveness.pptx
Diagnosing Organizational Effectiveness.pptxDiagnosing Organizational Effectiveness.pptx
Diagnosing Organizational Effectiveness.pptx
 
Competency-based Human Resource Management.pptx
Competency-based Human Resource Management.pptxCompetency-based Human Resource Management.pptx
Competency-based Human Resource Management.pptx
 
cement industry in India by T. Sumitha.pptx
cement industry in India by T. Sumitha.pptxcement industry in India by T. Sumitha.pptx
cement industry in India by T. Sumitha.pptx
 
Choosing the best strategy qspm matrix.pptx
Choosing the best strategy qspm matrix.pptxChoosing the best strategy qspm matrix.pptx
Choosing the best strategy qspm matrix.pptx
 
BCG Matrix by Raunak Strategic Management.ppt
BCG Matrix by Raunak Strategic Management.pptBCG Matrix by Raunak Strategic Management.ppt
BCG Matrix by Raunak Strategic Management.ppt
 
external analysis0000000000000000 .pptx
external analysis0000000000000000  .pptxexternal analysis0000000000000000  .pptx
external analysis0000000000000000 .pptx
 
Cement clinker coolers perf & efficiency.pptx
Cement clinker coolers perf & efficiency.pptxCement clinker coolers perf & efficiency.pptx
Cement clinker coolers perf & efficiency.pptx
 
Cement Industry in India by Saurabh.pptx
Cement Industry in India by Saurabh.pptxCement Industry in India by Saurabh.pptx
Cement Industry in India by Saurabh.pptx
 
Strategy Formulation 29th March 2024.pptx
Strategy Formulation 29th March 2024.pptxStrategy Formulation 29th March 2024.pptx
Strategy Formulation 29th March 2024.pptx
 
Safety Occupational Health & Environment SHE.ppt
Safety Occupational Health & Environment SHE.pptSafety Occupational Health & Environment SHE.ppt
Safety Occupational Health & Environment SHE.ppt
 
INTERNAL AUDIT - of Cement Industry.pptx
INTERNAL AUDIT - of Cement Industry.pptxINTERNAL AUDIT - of Cement Industry.pptx
INTERNAL AUDIT - of Cement Industry.pptx
 
Strategy Formulation 29th March 2024.pptx
Strategy Formulation 29th March 2024.pptxStrategy Formulation 29th March 2024.pptx
Strategy Formulation 29th March 2024.pptx
 

Recently uploaded

VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
amitlee9823
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Christo Ananth
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

Recently uploaded (20)

VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
 
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
 
Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
NFPA 5000 2024 standard .
NFPA 5000 2024 standard                                  .NFPA 5000 2024 standard                                  .
NFPA 5000 2024 standard .
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineering
 
Vivazz, Mieres Social Housing Design Spain
Vivazz, Mieres Social Housing Design SpainVivazz, Mieres Social Housing Design Spain
Vivazz, Mieres Social Housing Design Spain
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 

ROOT Cause Analysis RCA Workshop maint.ppt