// read data from BLMLHC_M Class post mortem data file // Authors: M. Stockner, D. Kramer // modified: // 16.11.2006 #include #include #include #include #include #include #include #include #include #include #include #include #include #include int main(int argc, char **argv) { gROOT->SetStyle("Plain"); gStyle->SetPalette(1); gROOT->ForceStyle(); TString filename;// = "PMData-20061115080058.txt"; if(argc>1) filename = argv[1]; else {cout << "Filename ???" << endl; return -1;} // cout << filename <GetEntries(); i++){ next = ((TObjString*)StringArray->At(i))->GetString(); myarray[x][y] = next.Atof(); x++; } y++; // if(y>40000) break; } printf ("x: %d y: %d \n",x,y); // end of read ascii file into 2 dim matrix // results: // x ... ROWS, int // y ... LINES, int // myarray ... all data from file, double // for(int a=0;aSetFillColor(0); myc->SetLeftMargin(0.11); // myc->SetLogx(); // myc->SetLogy(); // myc->SetTickx(); // myc->SetTicky(); TMultiGraph *mg1 = new TMultiGraph(); TLegend *leg1 = new TLegend(0.903736,0.790254,0.989943,0.902542); leg1->SetFillColor(0); TString grname[] = {"BLMS","BLMI"}; int v = 0; double tmparray[y]; for(int i=0;iSetLineColor(a); gr->SetMarkerColor(a); // gr->SetMarkerStyle(markernb[a]); mg1->Add(gr); leg1->AddEntry(gr,grname[v++],"lp"); } } // mg1->SetMinimum(1e-6); // mg1->SetMaximum(2e-3); mg1->Draw("ALP"); mg1->SetTitle(filename); mg1->GetXaxis()->SetRangeUser(0.,tmparray[y-1]); mg1->GetXaxis()->SetTitle("time [ms]"); mg1->GetXaxis()->SetTitleOffset(1.1); mg1->GetYaxis()->SetTitle("counts + ADC"); mg1->GetYaxis()->SetTitleOffset(1.5); leg1->Draw(); myApp.Run(); return 0; }