Fork me on GitHub

Changeset 333 in svn for trunk/src/SmearUtil.cc


Ignore:
Timestamp:
Mar 12, 2009, 12:06:24 PM (16 years ago)
Author:
Xavier Rouby
Message:

update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/SmearUtil.cc

    r332 r333  
    106106  ISOL_Cone       = 0.5;      //Cone  for isolation criteria
    107107  ISOL_Calo_ET    = 1E99;     //minimal tower energy for isolation criteria. Default off = 1E99
    108   ISOL_Calo_Cone  = 0.5;      //Cone for calorimetric isolation
    109108  ISOL_Calo_Grid  = 3;        //Grid size (N x N) for calorimetric isolation
    110109
     
    235234  ISOL_Cone       = DET.ISOL_Cone; 
    236235  ISOL_Calo_ET    = DET.ISOL_Calo_ET;  // calorimeter isolation, defaut off
    237   ISOL_Calo_Cone  = DET.ISOL_Calo_Cone;
    238236  ISOL_Calo_Grid  = DET.ISOL_Calo_Grid;
    239237
     
    358356  ISOL_Cone       = DET.ISOL_Cone;   
    359357  ISOL_Calo_ET    = DET.ISOL_Calo_ET;  // calorimeter isolation, defaut off
    360   ISOL_Calo_Cone  = DET.ISOL_Calo_Cone;
    361358  ISOL_Calo_Grid  = DET.ISOL_Calo_Grid;
    362359
     
    510507    else if(strstr(temp_string.c_str(),"ISOL_Cone"))        {curstring >> varname >> value; ISOL_Cone         = value;}
    511508    else if(strstr(temp_string.c_str(),"ISOL_Calo_ET"))     {curstring >> varname >> value; ISOL_Calo_ET      = value;}
    512     else if(strstr(temp_string.c_str(),"ISOL_Calo_Cone"))   {curstring >> varname >> value; ISOL_Calo_Cone    = value;}
    513509    else if(strstr(temp_string.c_str(),"ISOL_Calo_Grid"))   {curstring >> varname >> ivalue; ISOL_Calo_Grid    = ivalue;}
    514510
     
    804800   f_out << left << setw(40) <<"* Minimum ET for towers [GeV]: "<<""
    805801         << left << setw(20) <<ISOL_Calo_ET               <<""<< right << setw(10)<<"*"<<"\n";
    806    f_out << left << setw(40) <<"* Cone for calorimetric isolation: "<<""
    807          << left << setw(20) <<ISOL_Calo_Cone             <<""<< right << setw(10)<<"*"<<"\n";
    808802   f_out << left << setw(40) <<"* Grid size (NxN) for calorimetric isolation: "<<""
    809803         << left << setw(20) <<ISOL_Calo_Grid             <<""<< right << setw(10)<<"*"<<"\n";
Note: See TracChangeset for help on using the changeset viewer.