#include <stdio.h>
-
-
#include <stdlib.h>
#include <string.h>
#include <time.h>
printf("\n-------------\n");
printf("Entries: %i\n",entries);
- printf("Seperate runs for different banks!\n");
+ printf("Seperate runs for 4 different banks!\n");
scurveTree->SetBranchAddress( "threshold" , &threshold );
scurveTree->SetBranchAddress( "pixelprob" , pixelprob );
int thresh_tmp=255;
int bank=-1;
- for(int i=0;i<entries;i++)
- {
- scurveTree->GetEntry(i);
-
- if ( thresh_tmp>threshold )
- {
- printf("X ");
- if( bank!=-1 ) { printf("%i !\n", thresh_tmp); }
- bank++;
- scurveTreeInd[bank] = new TTree( Form("scurves%i",bank), Form("scurves%i",bank) );
- scurveTreeInd[bank] -> Branch("threshold" , &threshold , "threshold/s" , 32000);
- scurveTreeInd[bank] -> Branch("pixelprob" , pixelprob , "pixelprob[663552]/F" , 32000);
- scurveTreeInd[bank] -> Branch("frames" , rowcount , "frames[576]/s" , 32000);
-
- printf("Entries for bank %i found! Process threshold %i ... ", bank, threshold );
- }
- else if ( thresh_tmp+1<threshold)
- {
- printf("Y ");
- printf("%i ... ", threshold );
- }
-
- scurveTreeInd[bank]->Fill();
- thresh_tmp = threshold;
- }
-
- printf("%i !\n", thresh_tmp);
-
+ if (entries % 4 != 0){
+ printf("Error: %d not divisible by 4!", entries);
+ exit(1);
+ }
+
+ int rest;
+ int step;
+ rest = 256 - (256 / (entries / 4)) * (entries / 4);
+ step = (256 - rest) / ((entries / 4)-1);
+ //printf("rest,step: %d %d\n", rest, step);
+
+ for (int j=0;j<4;j++){
+ for(int i=0;i<(entries/4);i++)
+ {
+
+ if (i == 0){
+ printf("Filling bank %i: thresholds ", j);
+ scurveTreeInd[j] = new TTree( Form("scurves%i",j), Form("scurves%i",j) );
+ scurveTreeInd[j] -> Branch("threshold" , &threshold , "threshold/s" , 32000);
+ scurveTreeInd[j] -> Branch("pixelprob" , pixelprob , "pixelprob[663552]/F" , 32000);
+ scurveTreeInd[j] -> Branch("frames" , rowcount , "frames[576]/s" , 32000);
+ }
+ scurveTree->GetEntry(j*(entries/4)+i);
+ printf("%i ... ", threshold );
+
+ scurveTreeInd[j]->Fill();
+
+ if (i==(entries/4)-1){
+ printf("\n");
+ }
+
+ }
+ }
+
printf("-------------\n");
- for(int i=0;i<bank+1;i++)
+ for(int i=0;i<4;i++)
{
scurveTreeInd[i]->Write("",TObject::kOverwrite);
outFile->Write();
}
printf("-------------\n");
- pixelprob_arr = new Float_t[entries*1152*576];
- //canv = new TCanvas("canv","canv",600,400);
- //canv->cd();
-
- TH1F *histos, *histo[3];
- histos = new TH1F( "test", "test" , 255,0.,255.);
- histo[0] = new TH1F( "mean" , "mean" , 2550,0.,255.);
- histo[1] = new TH1F( "sigma" , "sigma" , 1000,0.,100.);
- histo[2] = new TH1F( "chi2" , "chi2" , 1000,0.,1.);
-
- TF1* erf = new TF1("erf","0.5*(1+TMath::Erf((-x+[0])/[1]))",0,100);
-
- int chicount;
- int meanmin, meanmax;
- float meanmean;
- float vsigma;
- float vtmp=1;
+// pixelprob_arr = new Float_t[entries*1152*576];
+// //canv = new TCanvas("canv","canv",600,400);
+// //canv->cd();
+//
+// TH1F *histos, *histo[3];
+// histos = new TH1F( "test", "test" , 255,0.,255.);
+// histo[0] = new TH1F( "mean" , "mean" , 2550,0.,255.);
+// histo[1] = new TH1F( "sigma" , "sigma" , 1000,0.,100.);
+// histo[2] = new TH1F( "chi2" , "chi2" , 1000,0.,1.);
+//
+// TF1* erf = new TF1("erf","0.5*(1+TMath::Erf((-x+[0])/[1]))",0,100);
+//
+// int chicount;
+// int meanmin, meanmax;
+// float meanmean;
+// float vsigma;
+// float vtmp=1;
// printf("Perform fitting of S-Curces:\n");
//
#include <stdio.h>
-
-
#include <stdlib.h>
#include <string.h>
#include <time.h>
// printf("Error: aaa0aaa0 not found (%s)! Wrong ID.\n",hword);
// exit(0);
// }
- an_mode++; // Dont care about the ID
+ an_mode++;
break;
case 4:
an_mode++; // ignore status
if(row>=576) {printf("%s %i","Wrong Row Number in 'row' =", row); exit(0);}
rowcount[row]++;
// printf("%i %i\n", threshold, row);
- for(unsigned int strpos=0;strpos<sizeof(str)-1;strpos++)
+ for(int strpos=0;strpos<sizeof(str)-1;strpos++)
{
ctoint = str[strpos]-'0';
pixelprob[row*1152+strpos] += ctoint;
if (argc == 2){
filename = &argv[1][0];
printf("Using hld file %s\n",filename);
- printf("The output is defined as %s\n",output);
+ printf("The output %s is NOT used!\n",output);
}
else{
usage();
printf("\n-------------\n");
printf("Entries: %i\n",entries);
- printf("Seperate runs for different banks!\n");
+ printf("Seperate runs for 4 different banks!\n");
scurveTree->SetBranchAddress( "threshold" , &threshold );
scurveTree->SetBranchAddress( "pixelprob" , pixelprob );
int thresh_tmp=255;
int bank=-1;
- for(int i=0;i<entries;i++)
- {
- scurveTree->GetEntry(i);
-
- if ( thresh_tmp>threshold )
- {
- if( bank!=-1 ) { printf("%i !\n", thresh_tmp); }
- bank++;
- scurveTreeInd[bank] = new TTree( Form("scurves%i",bank), Form("scurves%i",bank) );
- scurveTreeInd[bank] -> Branch("threshold" , &threshold , "threshold/s" , 32000);
- scurveTreeInd[bank] -> Branch("pixelprob" , pixelprob , "pixelprob[663552]/F" , 32000);
- scurveTreeInd[bank] -> Branch("frames" , rowcount , "frames[576]/s" , 32000);
-
- printf("Entries for bank %i found! Process threshold %i ... ", bank, threshold );
- }
- else if ( thresh_tmp+1<threshold)
- {
- printf("%i ... ", threshold );
- }
-
- scurveTreeInd[bank]->Fill();
- thresh_tmp = threshold;
- }
-
- printf("%i !\n", thresh_tmp);
-
+ if (entries % 4 != 0){
+ printf("Error: %d not divisible by 4!", entries);
+ exit(1);
+ }
+
+ int rest;
+ int step;
+ rest = 256 - (256 / (entries / 4)) * (entries / 4);
+ step = (256 - rest) / ((entries / 4)-1);
+ //printf("rest,step: %d %d\n", rest, step);
+
+ for (int j=0;j<4;j++){
+ for(int i=0;i<(entries/4);i++)
+ {
+
+ if (i == 0){
+ printf("Filling bank %i: thresholds ", j);
+ scurveTreeInd[j] = new TTree( Form("scurves%i",j), Form("scurves%i",j) );
+ scurveTreeInd[j] -> Branch("threshold" , &threshold , "threshold/s" , 32000);
+ scurveTreeInd[j] -> Branch("pixelprob" , pixelprob , "pixelprob[663552]/F" , 32000);
+ scurveTreeInd[j] -> Branch("frames" , rowcount , "frames[576]/s" , 32000);
+ }
+ scurveTree->GetEntry(j*(entries/4)+i);
+ printf("%i ... ", threshold );
+
+ scurveTreeInd[j]->Fill();
+
+ if (i==(entries/4)-1){
+ printf("\n");
+ }
+
+ }
+ }
+
printf("-------------\n");
- for(int i=0;i<bank+1;i++)
+ for(int i=0;i<4;i++)
{
scurveTreeInd[i]->Write("",TObject::kOverwrite);
outFile->Write();
}
printf("-------------\n");
- pixelprob_arr = new Float_t[entries*1152*576];
- canv = new TCanvas("canv","canv",600,400);
- canv->cd();
-
- TH1F *histos, *histo[3];
- histos = new TH1F( "test", "test" , 255,0.,255.);
- histo[0] = new TH1F( "mean" , "mean" , 2550,0.,255.);
- histo[1] = new TH1F( "sigma" , "sigma" , 1000,0.,100.);
- histo[2] = new TH1F( "chi2" , "chi2" , 1000,0.,1.);
-
- TF1* erf = new TF1("erf","0.5*(1+TMath::Erf((-x+[0])/[1]))",0,100);
-
- int chicount;
- int meanmin, meanmax;
- float meanmean;
- float vsigma;
- float vtmp=1;
-
- printf("Perform fitting of S-Curces:\n");
-
- for(int ba=0;ba<bank+1;ba++)
+ pixelprob_arr = new Float_t[entries*1152*576];
+ //canv = new TCanvas("canv","canv",600,400);
+ //canv->cd();
+
+ TH1F *histos, *histo[3];
+ histos = new TH1F( "test", "test" , 255,0.,255.);
+ histo[0] = new TH1F( "mean" , "mean" , 2550,0.,255.);
+ histo[1] = new TH1F( "sigma" , "sigma" , 1000,0.,100.);
+ histo[2] = new TH1F( "chi2" , "chi2" , 1000,0.,1.);
+
+ TF1* erf = new TF1("erf","0.5*(1+TMath::Erf((-x+[0])/[1]))",0,100);
+
+ int chicount;
+ int meanmin, meanmax;
+ float meanmean;
+ float vsigma;
+ float vtmp=1;
+
+ printf("Perform fitting of S-Curces:\n");
+
+ for(int ba=0;ba<4;ba++)
{
paraTree[ba] = new TTree( Form("para%i",ba), Form("para%i",ba));
paraTree[ba] -> Branch("pixel" , &pixel , "pixel/i" , 32000);
}
if( TMath::RMS(entries,&pixelprob_arr[pix*entries])!=0 )
{
- delete histos;
- histos = new TH1F( "test", "test" , 255,0.,255.);
+ delete histos;
+ histos = new TH1F( "test", "test" , 255,0.,255.);
meanmin=0;
meanmax=255;
for(int thr=0;thr<entries;thr++)
{
- histos->Fill(thr,pixelprob_arr[pix*entries+thr]);
+ histos->Fill(thr,pixelprob_arr[pix*entries+thr]);
if( pixelprob_arr[pix*entries+thr]!=1 && meanmin==0 ) { meanmin=thr-1; }
if( pixelprob_arr[pix*entries+thr]==0 && vtmp!=0 ) { meanmax=thr; }
vsigma = (meanmax-meanmin)/2.;
meanmean = (meanmax+meanmin)/2.;
erf->SetParameters(meanmean,vsigma);
- histos->Fit(erf,"Q");
-
+ histos->Fit(erf,"Q");
+
pixel = pix;
mean = erf->GetParameter(0);
sigma = erf->GetParameter(1)/TMath::Sqrt(2);
while( (mean<meanmin || mean>meanmax || sigma>75 || sigma<1) && chicount<10)
{
erf->SetParameters(meanmean,1.*(chicount+1));
- histos->Fit(erf,"QM");
+ histos->Fit(erf,"QM");
pixel = pix;
mean = erf->GetParameter(0);
sigma = erf->GetParameter(1)/TMath::Sqrt(2);
//canv->Update();
}
- histo[0]->Fill(mean);
- histo[1]->Fill(sigma);
- histo[2]->Fill(chi2);
-
- if(sigma>=75 || chi2>=100)
- {
- //printf("\r----- \n");
- //printf("\r--> ");
- //printf("%7i (%10i) %10.2f (%10i) %10.2f (%10f) %10.3f\n", pixel, meanmin, mean,meanmax, sigma,vsigma, chi2);
- //histos->Draw();
- //canv->Update();
- }
-
- if( sigma<1 )
- {
- //printf("\r----- \n");
- //printf("\r--> ");
- //printf("%7i (%10i) %10.2f (%10i) %10.2f (%10f) %10.3f\n", pixel, meanmin, mean,meanmax, sigma,vsigma, chi2);
- //histos->Draw();
- //canv->Update();
- }
-
+ histo[0]->Fill(mean);
+ histo[1]->Fill(sigma);
+ histo[2]->Fill(chi2);
+//
+// if(sigma>=75 || chi2>=100)
+// {
+// //printf("\r----- \n");
+// //printf("\r--> ");
+// //printf("%7i (%10i) %10.2f (%10i) %10.2f (%10f) %10.3f\n", pixel, meanmin, mean,meanmax, sigma,vsigma, chi2);
+// //histos->Draw();
+// //canv->Update();
+// }
+//
+// if( sigma<1 )
+// {
+// //printf("\r----- \n");
+// //printf("\r--> ");
+// //printf("%7i (%10i) %10.2f (%10i) %10.2f (%10f) %10.3f\n", pixel, meanmin, mean,meanmax, sigma,vsigma, chi2);
+// //histos->Draw();
+// //canv->Update();
+// }
+//
paraTree[ba]->Fill();
-
- // if(1)
- // {
- // canv->Update();
- // }
-
- // printf("\r%9i %5i %5i (%i) : %6.2f \u00b1 %5.2f %6.2f \u00b1 %5.2f %6.2f\n", pix, (int)(pix/1152),pix%1152, int((pix%1152)/288), erf->GetParameter(0), erf->GetParError(0), erf->GetParameter(1)/TMath::Sqrt(2), erf->GetParError(1)/TMath::Sqrt(2), erf->GetChisquare());
+//
+// // if(1)
+// // {
+// // canv->Update();
+// // }
+//
+// // printf("\r%9i %5i %5i (%i) : %6.2f \u00b1 %5.2f %6.2f \u00b1 %5.2f %6.2f\n", pix, (int)(pix/1152),pix%1152, int((pix%1152)/288), erf->GetParameter(0), erf->GetParError(0), erf->GetParameter(1)/TMath::Sqrt(2), erf->GetParError(1)/TMath::Sqrt(2), erf->GetChisquare());
}
}
outFile->Write();
// outFile->Save();
}
-
- canv->Divide(3,1);
- canv->cd(1);
- histo[0]->Draw();
- canv->cd(2);
- histo[1]->Draw();
- canv->cd(3);
- histo[2]->Draw();
-
- canv->Update();
+//
+// canv->Divide(3,1);
+// canv->cd(1);
+// histo[0]->Draw();
+// canv->cd(2);
+// histo[1]->Draw();
+// canv->cd(3);
+// histo[2]->Draw();
+//
+// canv->Update();
outFile->Write();
outFile->Save();
printf("\n%s created\n",Form("%s",outFileName.Data()));
printf("Finished!\n");
printf("-------------\n");
- theApp.Run(kTRUE);
+ gApplication->Terminate();
+ //theApp.Run(kTRUE);
// ------------------------------------------
- return 0;
+
+
+
+
}