Changeset 333 in svn
- Timestamp:
- Mar 12, 2009, 12:06:24 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/SmearUtil.cc
r332 r333 106 106 ISOL_Cone = 0.5; //Cone for isolation criteria 107 107 ISOL_Calo_ET = 1E99; //minimal tower energy for isolation criteria. Default off = 1E99 108 ISOL_Calo_Cone = 0.5; //Cone for calorimetric isolation109 108 ISOL_Calo_Grid = 3; //Grid size (N x N) for calorimetric isolation 110 109 … … 235 234 ISOL_Cone = DET.ISOL_Cone; 236 235 ISOL_Calo_ET = DET.ISOL_Calo_ET; // calorimeter isolation, defaut off 237 ISOL_Calo_Cone = DET.ISOL_Calo_Cone;238 236 ISOL_Calo_Grid = DET.ISOL_Calo_Grid; 239 237 … … 358 356 ISOL_Cone = DET.ISOL_Cone; 359 357 ISOL_Calo_ET = DET.ISOL_Calo_ET; // calorimeter isolation, defaut off 360 ISOL_Calo_Cone = DET.ISOL_Calo_Cone;361 358 ISOL_Calo_Grid = DET.ISOL_Calo_Grid; 362 359 … … 510 507 else if(strstr(temp_string.c_str(),"ISOL_Cone")) {curstring >> varname >> value; ISOL_Cone = value;} 511 508 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;}513 509 else if(strstr(temp_string.c_str(),"ISOL_Calo_Grid")) {curstring >> varname >> ivalue; ISOL_Calo_Grid = ivalue;} 514 510 … … 804 800 f_out << left << setw(40) <<"* Minimum ET for towers [GeV]: "<<"" 805 801 << 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";808 802 f_out << left << setw(40) <<"* Grid size (NxN) for calorimetric isolation: "<<"" 809 803 << left << setw(20) <<ISOL_Calo_Grid <<""<< right << setw(10)<<"*"<<"\n";
Note:
See TracChangeset
for help on using the changeset viewer.