0

問題は次のとおりです。ファイルから配列にデータを読み取っていました。グラフのプロットは問題なく動作します。しかし、TGraphErrors は何もしたくありません。ルートは言う

エラー: 現在のスコープ plot2 で TGraphErrors::SetPoint(i,Data[0][i],Data[1][i],Data[2][i],Data[2][i]) を呼び出せません。 C:85: 可能な候補は... (TGraphErrors 内) (TGraph 内) /usr/local/Cellar/root/5.34.26/lib/root/libHist.so -1:-1 0 public: virtual void TGraph: :SetPoint(Int_t i,Double_t x,Double_t y); * インタプリタ エラーが回復しました * "

コードは以下のとおりです。

    void plot2(char* fin1){
    const int VAR_N=20,NPOINTS=10000;
    Double_t Data[VAR_N][NPOINTS];
   int counts,N1;
   float E,E1,dE;
   FILE* fin12;
    printf("%s \n",fin1);
    fin12 = fopen(fin1,"r");
      if (fin12 == NULL){
        printf("Can't open input file: %s !\n",fin1);
    }
    else{
        counts=0; 
        while (!feof(fin12)) {
            fscanf(fin12, "%f %f %f \n",&E,&E1,&dE);
            printf("%f %f %f \n",E,E1,dE);
                Data[0][counts] =   E;
                Data[1][counts] =   E1;
                Data[2][counts] =   dE;  }
        N1=counts;
        printf("NP1=%d ",N1);
        fclose(fin12);
    }
   TGraph* V_Graph = new TGraph(N1);
    TGraphErrors* V_GraphErrors = new TGraphErrors(N1);
    for(int i=0;i<N1;i++){
       V_Graph->SetPoint(i,Data[0][i],Data[1][i]);
     } 
   for(int i=0;i<N1;i++){
   V_GraphErrors->SetPoint(i,Data[0][i],Data[1][i],Data[2][i],Data[2][i]);
  }

TCanvas *c1 = new TCanvas("c1", "c1", 1200, 1000);
  c1->cd(1);
   TString VName="+Errors";
   V_Graph->SetTitle(VName);
   V_Graph->SetMarkerStyle(21);
   V_Graph->SetMarkerSize(1);
   V_Graph->SetMarkerColor(kBlue);
    V_Graph->GetXaxis()->SetTitle("x");
    V_Graph->GetYaxis()->SetTitle("y");
    V_Graph->GetXaxis()->SetLimits(4.,25.);
    V_Graph->GetYaxis()->SetRangeUser(10.,80.);
    V_Graph->Draw("APL");

    V_GraphErrors->SetMarkerStyle(21);
    V_GraphErrors->SetMarkerSize(1);
    V_GraphErrors->SetMarkerColor(kGreen);
    //V_Graph->GetXaxis()->SetLimits(4.,11.);
    //V_Graph->GetYaxis()->SetRangeUser(45.,80.);
    V_GraphErrors->Draw("C*");
}

私はルートを使用するのが初めてです。おそらく、私はちょっとばかげていて、それに気づきませんでした。それで、私は何を間違えましたか?よろしくお願いします
オルカ

4

1 に答える 1