Difference between revisions of "TF ErrAna Homework"
Jump to navigation
Jump to search
(Created page with '=Errors= 1.) Give examples of 5 Systematic and 5 Statistical errors. 2.) Find 3 published example of data which is wrongly represented 3.) Create a Histogram using ROOT') |
(→Errors) |
||
Line 6: | Line 6: | ||
3.) Create a Histogram using ROOT | 3.) Create a Histogram using ROOT | ||
+ | |||
+ | some commands that may interest you | ||
+ | <pre> | ||
+ | |||
+ | root [1] TH1F *Hist1=new TH1F("Hist1","Hist1",50,0.5,49.5) | ||
+ | root [2] Hist1->Fill(10); | ||
+ | root [3] Hist1->Draw(); | ||
+ | </pre> |
Revision as of 21:57, 9 January 2010
Errors
1.) Give examples of 5 Systematic and 5 Statistical errors.
2.) Find 3 published example of data which is wrongly represented
3.) Create a Histogram using ROOT
some commands that may interest you
root [1] TH1F *Hist1=new TH1F("Hist1","Hist1",50,0.5,49.5) root [2] Hist1->Fill(10); root [3] Hist1->Draw();