/[PAMELA software]/calo/flight/CaloProfile/src/CaloProfile.cpp
ViewVC logotype

Diff of /calo/flight/CaloProfile/src/CaloProfile.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.10 by mocchiut, Wed Aug 12 14:57:00 2009 UTC revision 1.17 by mocchiut, Mon Dec 14 14:49:16 2009 UTC
# Line 281  CaloLat::CaloLat(PamLevel2 *l2p){   Line 281  CaloLat::CaloLat(PamLevel2 *l2p){  
281    PKT = 0;    PKT = 0;
282    atime = 0;    atime = 0;
283    //    //
284      suf = "";
285    debug = false;    debug = false;
286      usepl18x = false;
287    //    //
288  };  };
289    
# Line 297  Calo2D::Calo2D(PamLevel2 *l2p){   Line 299  Calo2D::Calo2D(PamLevel2 *l2p){  
299    PKT = 0;    PKT = 0;
300    atime = 0;    atime = 0;
301    //    //
302      suf = "";
303    debug = false;    debug = false;
304      usepl18x = false;
305    //    //
306  };  };
307    
# Line 375  void CaloLat::Draw(Int_t view,Int_t plan Line 379  void CaloLat::Draw(Int_t view,Int_t plan
379    //    //
380    for (Int_t v=minv; v<maxv;v++){    for (Int_t v=minv; v<maxv;v++){
381       for (Int_t p=minp; p<maxp;p++){       for (Int_t p=minp; p<maxp;p++){
382          TString hid = Form("clatv%ip%i",v,p);           TString hid = Form("clatv%ip%i%s",v,p,suf.Data());      
383          TCanvas *tc  = dynamic_cast<TCanvas*>(gDirectory->FindObject(hid));          TCanvas *tc  = dynamic_cast<TCanvas*>(gDirectory->FindObject(hid));
384          if ( tc ){          if ( tc ){
385  //       tc->Clear();  //       tc->Clear();
# Line 383  void CaloLat::Draw(Int_t view,Int_t plan Line 387  void CaloLat::Draw(Int_t view,Int_t plan
387           tc = new TCanvas(hid,hid);           tc = new TCanvas(hid,hid);
388          };          };
389          //          //
390          TString thid = Form("hlatv%ip%i",v,p);            TString thid = Form("hlatv%ip%i%s",v,p,suf.Data());    
391          TH1F *th  = dynamic_cast<TH1F*>(gDirectory->FindObject(thid));          TH1F *th  = dynamic_cast<TH1F*>(gDirectory->FindObject(thid));
392          if ( th ) th->Delete();          if ( th ) th->Delete();
393  //       th->Clear();  //       th->Clear();
# Line 426  void Calo2D::Draw(Int_t plane){ Line 430  void Calo2D::Draw(Int_t plane){
430    gStyle->SetNdivisions(510,"XY");    gStyle->SetNdivisions(510,"XY");
431    //    //
432    for (Int_t p=minp; p<maxp;p++){    for (Int_t p=minp; p<maxp;p++){
433      TString hid = Form("c2dp%i",p);          TString hid = Form("c2dp%i%s",p,suf.Data());        
434      TCanvas *tc  = dynamic_cast<TCanvas*>(gDirectory->FindObject(hid));      TCanvas *tc  = dynamic_cast<TCanvas*>(gDirectory->FindObject(hid));
435      if ( tc ){      if ( tc ){
436        //         tc->Clear();        //         tc->Clear();
# Line 434  void Calo2D::Draw(Int_t plane){ Line 438  void Calo2D::Draw(Int_t plane){
438        tc = new TCanvas(hid,hid);        tc = new TCanvas(hid,hid);
439      };      };
440      //      //
441      TString thid = Form("h2dp%i",p);          TString thid = Form("h2dp%i%s",p,suf.Data());      
442      TH2F *th  = dynamic_cast<TH2F*>(gDirectory->FindObject(thid));      TH2F *th  = dynamic_cast<TH2F*>(gDirectory->FindObject(thid));
443      if ( th ) th->Delete();      if ( th ) th->Delete();
444      //   th->Clear();      //   th->Clear();
# Line 525  void CaloLat::Process(){ Line 529  void CaloLat::Process(){
529    //    //
530    for (Int_t i=0; i<L2->GetCaloLevel1()->istrip ; i++){    for (Int_t i=0; i<L2->GetCaloLevel1()->istrip ; i++){
531      mip1 = L2->GetCaloLevel1()->DecodeEstrip(i,view1,plane1,strip1);      mip1 = L2->GetCaloLevel1()->DecodeEstrip(i,view1,plane1,strip1);
532        //
533        if ( !usepl18x && view1==0 && plane1==18 ) mip1 = 0.;
534        //
535      estrip[view1][plane1][strip1] = mip1;      estrip[view1][plane1][strip1] = mip1;
536    };    };
537    //    //
# Line 572  void Calo2D::Process(){ Line 579  void Calo2D::Process(){
579    //    //
580    for (Int_t i=0; i<L2->GetCaloLevel1()->istrip ; i++){    for (Int_t i=0; i<L2->GetCaloLevel1()->istrip ; i++){
581      mip1 = L2->GetCaloLevel1()->DecodeEstrip(i,view1,plane1,strip1);      mip1 = L2->GetCaloLevel1()->DecodeEstrip(i,view1,plane1,strip1);
582        //
583        if ( !usepl18x && view1==0 && plane1==18 ) mip1 = 0.;
584        //
585      es[view1][plane1][strip1] = mip1;      es[view1][plane1][strip1] = mip1;
586    };    };
587    //    //
# Line 661  CaloLong::CaloLong(PamLevel2 *l2p){   Line 671  CaloLong::CaloLong(PamLevel2 *l2p){  
671    mask18b = -1;    mask18b = -1;
672    //    //
673    no18x = true;    no18x = true;
674      usepl18x = !no18x;
675    debug = false;    debug = false;
676    maskXE = false;    maskXE = false;
677    maskXO = false;    maskXO = false;
# Line 671  CaloLong::CaloLong(PamLevel2 *l2p){   Line 682  CaloLong::CaloLong(PamLevel2 *l2p){  
682    umax = 100.;    umax = 100.;
683    slmax = "";    slmax = "";
684    sumax = "";    sumax = "";
685      suf = "";
686      xyaverage = true;
687      //
688      letmax = -1;
689      heavytail = false;
690      //  lmipth = 100.;
691      lmipth = 0.;
692    //    //
693  };  };
694    
# Line 696  void CaloLong::UnMaskSection(TString sec Line 714  void CaloLong::UnMaskSection(TString sec
714    
715  void CaloLong::Clear(){  void CaloLong::Clear(){
716    //    //
717      if ( debug ) printf(" Clear called \n");
718      //
719    memset(eplane,0, 2*22*sizeof(Float_t));    memset(eplane,0, 2*22*sizeof(Float_t));
720    //    //
721    chi2 = 0.;    chi2 = 0.;
# Line 838  void CaloLong::Process(){ Line 858  void CaloLong::Process(){
858    Bool_t gof = true;    Bool_t gof = true;
859    for (Int_t i=0; i < L2->GetCaloLevel1()->istrip; i++){    for (Int_t i=0; i < L2->GetCaloLevel1()->istrip; i++){
860      mip = L2->GetCaloLevel1()->DecodeEstrip(i,view,plane,strip);      mip = L2->GetCaloLevel1()->DecodeEstrip(i,view,plane,strip);
861        //
862        if ( !usepl18x && view==0 && plane==18 ) mip = 0.;
863        //
864      gof = true;      gof = true;
865      if ( maskXE && (plane%2)==0 && view==1 ) gof = false;      if ( maskXE && (plane%2)==0 && view==1 ) gof = false;
866      if ( maskXO && (plane%2)!=0 && view==1 ) gof = false;      if ( maskXO && (plane%2)!=0 && view==1 ) gof = false;
# Line 848  void CaloLong::Process(){ Line 871  void CaloLong::Process(){
871    //    //
872    // inclination factor (stolen from Daniele's code)    // inclination factor (stolen from Daniele's code)
873    //    //
874    Float_t ytgx = 0;    Float_t ytgx = 0.;
875    Float_t ytgy = 0;    Float_t ytgy = 0.;
876    ytgx = 0.76 * clp->tanx[0];    ytgx = 0.76 * clp->tanx[0];
877    ytgy = 0.76 * clp->tany[0];      ytgy = 0.76 * clp->tany[0];  
878    X0pl = sqrt( pow(0.76,2.) + pow(ytgx,2.) + pow(ytgy,2.) );    X0pl = sqrt( pow(0.76,2.) + pow(ytgx,2.) + pow(ytgy,2.) );
# Line 943  void CaloLong::SetEnergies(Float_t myene Line 966  void CaloLong::SetEnergies(Float_t myene
966      };      };
967    };    };
968    //    //
969      if ( !clp && debug ) printf(" ERROR!! no CaloLevel2 obj!!\n");
970      //
971    // inclination factor (stolen from Daniele's code)    // inclination factor (stolen from Daniele's code)
972    //    //
973    Float_t ytgx = 0;    Float_t ytgx = 0.;
974    Float_t ytgy = 0;    Float_t ytgy = 0.;
975    ytgx = 0.76 * clp->tanx[0];    ytgx = 0.76 * clp->tanx[0];
976    ytgy = 0.76 * clp->tany[0];      ytgy = 0.76 * clp->tany[0];  
977    X0pl = sqrt( pow(0.76,2.) + pow(ytgx,2.) + pow(ytgy,2.) );    X0pl = sqrt( pow(0.76,2.) + pow(ytgx,2.) + pow(ytgy,2.) );
978      if ( debug ) printf(" X0pl %f tanx %f tany %f \n",X0pl,ytgx,ytgy);
979    //    //
980    // Find experimental plane of maximum    // Find experimental plane of maximum
981    //    //
# Line 970  void CaloLong::SetEnergies(Float_t myene Line 996  void CaloLong::SetEnergies(Float_t myene
996    //    //
997    if ( vmax == 0 ) pmax++;    if ( vmax == 0 ) pmax++;
998    etmax = pmax * X0pl;    etmax = pmax * X0pl;
999      letmax = etmax;
1000    //    //
1001    if ( debug ) this->Print();    if ( debug ) this->Print();
1002    if ( debug ) printf(" exit \n");    if ( debug ) printf(" exit \n");
# Line 994  void CaloLong::Fit(){ Line 1021  void CaloLong::Fit(){
1021    this->Fit(false);    this->Fit(false);
1022  };  };
1023    
1024  Float_t CaloLong::Evaluate(TString s, Float_t tmax){  Float_t CaloLong::Evaluate(TString s, Float_t tmax, Float_t X0pl){
1025    /* SAMPLE OUTPUT:    /* SAMPLE OUTPUT:
1026       Enter Infix Expression : A + B + C / (E - F)       Enter Infix Expression : A + B + C / (E - F)
1027       Postfix Expression is : A B + C E F - / +         Postfix Expression is : A B + C E F - / +  
1028    */      */  
1029    if ( !s.Contains("t") ){    if ( !s.Contains("tmax") && !s.Contains("X0pl") ){
1030      printf(" ERROR, the input formula must contain \"t\"\n");      printf(" ERROR, the input formula must contain \"t\"\n");
1031      return 0.;      return 0.;
1032    };    };
# Line 1008  Float_t CaloLong::Evaluate(TString s, Fl Line 1035  Float_t CaloLong::Evaluate(TString s, Fl
1035      return 0.;      return 0.;
1036    };    };
1037    TString g=Form("%f",tmax);    TString g=Form("%f",tmax);
1038      TString h=Form("%f",X0pl);
1039    TString *ts= new TString("");    TString *ts= new TString("");
1040    ts->Prepend(s.Data());    ts->Prepend(s.Data());
1041    ts->ReplaceAll("t",1,g.Data(),g.Capacity());    ts->ReplaceAll("tmax",4,g.Data(),g.Capacity());
1042      ts->ReplaceAll("X0pl",4,h.Data(),h.Capacity());
1043    ts->Prepend("(");    ts->Prepend("(");
1044    ts->Append(")");    ts->Append(")");
1045    if ( debug )  printf(" ts %s tssize %i capac %i s %s g %s \n",ts->Data(),ts->Sizeof(),ts->Capacity(),s.Data(),g.Data());    if ( debug )  printf(" ts %s tssize %i capac %i s %s g %s \n",ts->Data(),ts->Sizeof(),ts->Capacity(),s.Data(),g.Data());
# Line 1063  void CaloLong::Fit(Bool_t draw){ Line 1092  void CaloLong::Fit(Bool_t draw){
1092      gStyle->SetNdivisions(510,"XY");      gStyle->SetNdivisions(510,"XY");
1093    };    };
1094    //    //
1095    TString hid = Form("clongfit");          TString hid = Form("clongfit%s",suf.Data());  
1096    TCanvas *tc  = dynamic_cast<TCanvas*>(gDirectory->FindObject(hid));    TCanvas *tc  = dynamic_cast<TCanvas*>(gDirectory->FindObject(hid));
1097    //  if ( tc ) tc->Delete();    //  if ( tc ) tc->Delete();
1098    //  if ( tc ) tc->Close();    //  if ( tc ) tc->Close();
# Line 1073  void CaloLong::Fit(Bool_t draw){ Line 1102  void CaloLong::Fit(Bool_t draw){
1102      if ( tc ) tc->cd();      if ( tc ) tc->cd();
1103    };    };
1104    //    //
1105    TString thid = Form("hlongfit");          TString thid = Form("hlongfit%s",suf.Data());
1106    TH1F *th  = dynamic_cast<TH1F*>(gDirectory->FindObject(thid));    TH2F *th  = dynamic_cast<TH2F*>(gDirectory->FindObject(thid));
1107    if ( th ) th->Delete();    if ( th ) th->Delete();
1108      //
1109      TString ghid = Form("glongfit%s",suf.Data());
1110      TGraphErrors *gh  = dynamic_cast<TGraphErrors*>(gDirectory->FindObject(ghid));
1111      if ( gh ) gh->Delete();
1112      //
1113    Float_t xpos = 0.;    Float_t xpos = 0.;
1114    Float_t enemip = 0.;    Float_t enemip = 0.;
1115    Float_t xmax = NC * X0pl + 0.2;    Float_t xmax = NC * X0pl + 0.2;
1116    //  th = new TH1F(thid,thid,int(NC*1.5),-0.2,xmax);    //
1117    th = new TH1F(thid,thid,100,-0.2,xmax);    Double_t xxx[50];
1118      Double_t exx[50];
1119      Double_t yyy[50];
1120      Double_t eyy[50];
1121      Int_t numpo = 0;
1122      memset(xxx,0,50*sizeof(Double_t));
1123      memset(exx,0,50*sizeof(Double_t));
1124      memset(yyy,0,50*sizeof(Double_t));
1125      memset(eyy,0,50*sizeof(Double_t));
1126    //    //
1127    // AGH, BUG!    // AGH, BUG!
1128    //    //
# Line 1094  void CaloLong::Fit(Bool_t draw){ Line 1136  void CaloLong::Fit(Bool_t draw){
1136      mmax = NC;      mmax = NC;
1137    };    };
1138    //    //
1139      Float_t emax = 0.;
1140    Float_t qtotparz = 0.;    Float_t qtotparz = 0.;
1141    for (Int_t st=mmin;st<mmax+1;st++){    for (Int_t st=mmin;st<mmax+1;st++){
1142      enemip = 0.;      enemip = 0.;
1143      xpos = (st - mmin) * X0pl;      xpos = (st - mmin) * X0pl;
1144      if ( st > mmin && st < mmax ){            //
1145        if ( no18x && ( st == 18+1 || st == mask18b+1 )){      if ( xyaverage ){
1146          if ( !maskYO ){        //
1147            enemip = 2. * eplane[1][st];        if ( st > mmin && st < mmax ){      
1148            if ( no18x && ( st == 18+1 || st == mask18b+1 )){
1149              if ( !maskYO ){
1150                enemip = 2. * eplane[1][st];
1151              } else {
1152                enemip = eplane[1][st];
1153              };
1154          } else {          } else {
1155            enemip = eplane[1][st];            enemip = eplane[0][st-1] + eplane[1][st];
1156          };          };
1157        } else {        } else {
1158          enemip = eplane[0][st-1] + eplane[1][st];          if ( st == mmin ){
1159              if ( !maskYE ){
1160                enemip = 2. * eplane[1][st];
1161              } else {
1162                enemip = eplane[1][st];
1163              };
1164            };
1165            if ( st == mmax ){
1166              if ( !maskXE ){
1167                enemip = 2. * eplane[0][st-1];
1168              } else {
1169                enemip = eplane[0][st-1];
1170              };
1171            };
1172          };
1173          //
1174          qtotparz += enemip;
1175          if ( enemip > emax ) emax = enemip;
1176          if ( enemip > 0. ){
1177            xxx[numpo] = xpos;
1178            exx[numpo] = 0.1;
1179            yyy[numpo] = enemip;
1180            eyy[numpo] = sqrt(enemip*3.)+sqrt(5.);
1181            //if ( xpos > letmax && enemip > lmipth && heavytail) eyy[numpo] = (sqrt(enemip*3.)+sqrt(5.))/numpo;
1182            if ( xpos > letmax && enemip > lmipth && heavytail) eyy[numpo] = sqrt(enemip)/5.;
1183            if ( xpos > letmax-1 && xpos < letmax+1 && heavytail ) eyy[numpo] /= 5.;
1184            //if ( xpos > letmax-2 && xpos < letmax+1 && heavytail ) eyy[numpo] /= 7.;
1185            if ( xpos < 3. && heavytail ) eyy[numpo] /= 5.;
1186            numpo++;
1187            //      th->Fill(xpos,enemip);
1188            if ( debug ) printf(" AVE Filling: st %i xpos %f energy %f error %f letmax %f lmpith %f \n",st,xpos,enemip,eyy[numpo-1],letmax,lmipth);
1189        };        };
1190      } else {      } else {
1191        if ( st == mmin ){        for (Int_t jj=0; jj<2; jj++){
1192          if ( !maskYE ){          if ( st > mmin && st < mmax ){
1193            enemip = 2. * eplane[1][st];            if ( jj == 0 && no18x && ( st == 18+1 || st == mask18b+1 )){
1194                enemip = eplane[1][st];
1195              } else {
1196                if ( jj == 0 ){
1197                  enemip = eplane[jj][st-1];
1198                } else {
1199                  enemip = eplane[jj][st];
1200                };        
1201              };
1202          } else {          } else {
1203            enemip = eplane[1][st];            if ( st == mmin && jj == 1 ){
1204                enemip = eplane[jj][st];
1205              };
1206              if ( st == mmax && jj == 0){
1207                enemip = eplane[jj][st-1];
1208              };
1209          };          };
1210        };          //
1211        if ( st == mmax ){          qtotparz += enemip;
1212          if ( !maskXE ){        if ( enemip > emax ) emax = enemip;
1213            enemip = 2. * eplane[0][st-1];          if ( enemip > 0. ){
1214          } else {            xxx[numpo] = xpos;
1215            enemip = eplane[0][st-1];            exx[numpo] = 0.1;
1216              yyy[numpo] = enemip;
1217              eyy[numpo] = sqrt(enemip*3.)+sqrt(5.);
1218              //if ( xpos > letmax && enemip > lmipth && heavytail) eyy[numpo] = (sqrt(enemip*3.)+sqrt(5.))/numpo;
1219              //if ( xpos > letmax && enemip > lmipth && heavytail ) eyy[numpo] = (sqrt(enemip*3.)+sqrt(5.))/numpo;
1220              if ( xpos > letmax && enemip > lmipth && heavytail) eyy[numpo] = sqrt(enemip)/5.;
1221              if ( xpos > letmax-1 && xpos < letmax+1 && heavytail ) eyy[numpo] /= 5.;
1222            //if ( xpos > letmax-2 && xpos < letmax+1 && heavytail ) eyy[numpo] /= 7.;
1223              if ( xpos < 3. && heavytail ) eyy[numpo] /= 5.;        
1224              //      eyy[numpo] = sqrt(enemip)/(st*0.95);
1225              numpo++;
1226              //      th->Fill(xpos,enemip);
1227              if ( debug ) printf(" XY Filling: st %i xpos %f energy %f \n",st,xpos,enemip);
1228          };          };
1229        };        };        
     };  
     //  
     qtotparz += enemip;  
     if ( enemip > 0. ){  
       th->Fill(xpos,enemip);  
       if ( debug ) printf(" Filling: st %i xpos %f energy %f \n",st,xpos,enemip);  
1230      };      };
1231    
1232      //      //
1233      //    for (Int_t v=1; v>=0;v--)// {      //    for (Int_t v=1; v>=0;v--)// {
1234  //       //  //       //
# Line 1155  void CaloLong::Fit(Bool_t draw){ Line 1254  void CaloLong::Fit(Bool_t draw){
1254  //     };  //     };
1255    };    };
1256    //    //
1257    TF1 *lfit = new TF1("lfit",ccurve,0.,xmax,3);    //  th = new TH2F(thid,thid,int(NC*1.5),-0.2,xmax);
1258      th = new TH2F(thid,thid,1000,-0.2,xmax,1000,0.,emax*1.2);
1259      gh = new TGraphErrors(numpo,xxx,yyy,exx,eyy);
1260      TString fnam=Form("lfit%s",suf.Data());
1261      TF1 *lfit  = dynamic_cast<TF1*>(gDirectory->FindObject(fnam));
1262      if ( lfit ) lfit->Delete();
1263      lfit = new TF1(fnam,ccurve,0.,xmax,3);
1264    //   if ( !lfit ){
1265    //     lfit = new TF1(fnam,ccurve,0.,xmax,3);
1266    //   };
1267    //   lfit->Clear();
1268    //   lfit->SetName(fnam);
1269    //   lfit->SetRange(0.,xmax);
1270    //  lfit->Print();
1271      //
1272    if ( debug ) printf("qtot %f qtotparz %f \n",clp->qtot,qtotparz);    if ( debug ) printf("qtot %f qtotparz %f \n",clp->qtot,qtotparz);
1273    E0 = qtotparz;    E0 = qtotparz;
1274    //  E0 = clp->qtot;    //  E0 = clp->qtot;
# Line 1166  void CaloLong::Fit(Bool_t draw){ Line 1279  void CaloLong::Fit(Bool_t draw){
1279    //  lfit->SetParLimits(0,0.,1000.);    //  lfit->SetParLimits(0,0.,1000.);
1280    //  lfit->SetParLimits(1,-1.,80.);    //  lfit->SetParLimits(1,-1.,80.);
1281    //  lfit->SetParLimits(2,-1.,10.);    //  lfit->SetParLimits(2,-1.,10.);
1282    TString optio;    // TString optio = "ROW"; // "RO"
1283      TString optio = "RO"; // "RO"
1284    if ( debug ){    if ( debug ){
1285      //    optio = "MERBOV";      optio += "NV";
1286      //    optio = "MEROV";      if ( draw ) optio += "V";
     //    optio = "EROV";  
     optio = "RNOV";  
     if ( draw ) optio = "ROV";  
1287    } else {    } else {
1288      //    optio = "MERNOQ";      optio += "NQ";
1289      //    optio = "ERNOQ";      if ( draw ) optio += "Q";
     optio = "RNOQ";  
     if ( draw ) optio = "ROQ";  
1290    };    };
1291    //    //
1292    if ( debug ) printf(" OK, start the fitting procedure...\n");    if ( debug ) printf(" OK, start the fitting procedure... options: %s \n",optio.Data());
1293    //    //
1294    fitresult = th->Fit("lfit",optio);    //  fitresult = th->Fit("lfit",optio);
1295      //  lfit->Update();
1296      fitresult = gh->Fit("lfit",optio);
1297      //  fitresult = gh->Fit("lfit","ROQW");
1298    //    //
1299    if ( debug ) printf(" the fit is done! result: %i \n",fitresult);    if ( debug ) printf(" the fit is done! result: %i \n",fitresult);
1300    //    //
# Line 1203  void CaloLong::Fit(Bool_t draw){ Line 1315  void CaloLong::Fit(Bool_t draw){
1315      asymm = -1.;      asymm = -1.;
1316      defE0 = -1.;      defE0 = -1.;
1317    } else {    } else {
1318      if ( slmax.MaybeRegexp() ) lmax = this->Evaluate(slmax,tmax);      if ( slmax.MaybeRegexp() ) lmax = this->Evaluate(slmax,tmax,X0pl);
1319      if ( sumax.MaybeRegexp() ) umax = this->Evaluate(sumax,tmax);      if ( sumax.MaybeRegexp() ) umax = this->Evaluate(sumax,tmax,X0pl);
1320      Int_t npp = 1000;      Int_t npp = 1000;
1321      double *xpp=new double[npp];      double *xpp=new double[npp];
1322      double *wpp=new double[npp];      double *wpp=new double[npp];
# Line 1226  void CaloLong::Fit(Bool_t draw){ Line 1338  void CaloLong::Fit(Bool_t draw){
1338      delete w;      delete w;
1339      delete xp;      delete xp;
1340      delete wp;      delete wp;
1341        delete xpp;
1342        delete wpp;
1343      //    Float_t i10max = lfit->Integral(0.,10.*tmax);      //    Float_t i10max = lfit->Integral(0.,10.*tmax);
1344      if ( debug ) printf(" Integral: %f \n",i10max);      if ( debug ) printf(" Integral: %f \n",i10max);
1345      //      //
# Line 1259  void CaloLong::Fit(Bool_t draw){ Line 1373  void CaloLong::Fit(Bool_t draw){
1373      // axis titles      // axis titles
1374      th->SetXTitle("Depth [X0]");      th->SetXTitle("Depth [X0]");
1375      th->SetYTitle("Energy [MIP]");      th->SetYTitle("Energy [MIP]");
1376      th->DrawCopy("Perror");      //    th->DrawCopy("Perror");
1377        th->DrawCopy();
1378        gh->SetMarkerSize(1.);
1379        gh->SetMarkerStyle(21);
1380        //    gh->SetMarkerColor(kRed);
1381        gh->Draw("Psame");
1382      lfit->Draw("same");      lfit->Draw("same");
1383      tc->Modified();      tc->Modified();
1384      tc->Update();      tc->Update();
# Line 1271  void CaloLong::Fit(Bool_t draw){ Line 1390  void CaloLong::Fit(Bool_t draw){
1390      if ( th ) th->Delete();      if ( th ) th->Delete();
1391    };    };
1392    //    //
1393    delete lfit;  //   gMinuit->SetPrintLevel(1);
1394    //   gMinuit->mnamin();
1395    //   //  gMinuit->mnfree(0);
1396    //   gMinuit->mncler();
1397    //   gMinuit->mnrset(1);
1398      //  gMinuit->Delete();
1399      //ROOT::Math::Minimizer::Clear();
1400      //  gMinuit->mnhelp("*");
1401      //
1402      //  delete lfit;
1403    //    //
1404  };  };
1405    
# Line 1300  void CaloLong::Draw(Int_t view){ Line 1428  void CaloLong::Draw(Int_t view){
1428    //    //
1429    if ( maxv != -1 ){    if ( maxv != -1 ){
1430      for (Int_t v=minv; v<maxv;v++){      for (Int_t v=minv; v<maxv;v++){
1431        TString hid = Form("clongv%i",v);        TString hid = Form("clongv%i%s",v,suf.Data());    
1432        TCanvas *tc  = dynamic_cast<TCanvas*>(gDirectory->FindObject(hid));        TCanvas *tc  = dynamic_cast<TCanvas*>(gDirectory->FindObject(hid));
1433        if ( tc ){        if ( tc ){
1434          //       tc->Clear();          //       tc->Clear();
# Line 1308  void CaloLong::Draw(Int_t view){ Line 1436  void CaloLong::Draw(Int_t view){
1436          tc = new TCanvas(hid,hid);          tc = new TCanvas(hid,hid);
1437        };        };
1438        //        //
1439        TString thid = Form("hlongv%i",v);                TString thid = Form("hlongv%i%s",v,suf.Data());  
1440        TH1F *th  = dynamic_cast<TH1F*>(gDirectory->FindObject(thid));        TH1F *th  = dynamic_cast<TH1F*>(gDirectory->FindObject(thid));
1441        if ( th ) th->Delete();        if ( th ) th->Delete();
1442        //         th->Clear();        //         th->Clear();
# Line 1327  void CaloLong::Draw(Int_t view){ Line 1455  void CaloLong::Draw(Int_t view){
1455      };      };
1456    } else {    } else {
1457      //      //
1458      TString hid = Form("clongvyvx");          TString hid = Form("clongvyvx%s",suf.Data());      
1459      TCanvas *tc  = dynamic_cast<TCanvas*>(gDirectory->FindObject(hid));      TCanvas *tc  = dynamic_cast<TCanvas*>(gDirectory->FindObject(hid));
1460      if ( tc ){      if ( tc ){
1461      } else {      } else {
1462        tc = new TCanvas(hid,hid);        tc = new TCanvas(hid,hid);
1463      };      };
1464      //      //
1465      TString thid = Form("hlongvyvx");        TString thid = Form("hlongvyvx%s",suf.Data());      
1466      TH1F *th  = dynamic_cast<TH1F*>(gDirectory->FindObject(thid));      TH1F *th  = dynamic_cast<TH1F*>(gDirectory->FindObject(thid));
1467      if ( th ) th->Delete();      if ( th ) th->Delete();
1468      th = new TH1F(thid,thid,44,-0.5,43.5);      th = new TH1F(thid,thid,44,-0.5,43.5);

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.17

  ViewVC Help
Powered by ViewVC 1.1.23