Changeset 9363 for trunk


Ignore:
Timestamp:
02/23/09 18:39:26 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r9362 r9363  
    5757     - improved output
    5858     - added option for homogenous distribution
     59
     60   * mmuon/MMuonCalibParCalc.cc:
     61     - converted cuts from mm to deg so they will work also for other
     62       geometries
    5963
    6064
  • trunk/MagicSoft/Mars/mmuon/MMuonCalibParCalc.cc

    r8776 r9363  
    185185    fMuonCalibPar->SetArcWidth(width);
    186186
     187    const Double_t rad = fMuonSearchPar->GetRadius()*fGeomCam->GetConvMm2Deg();
     188    const Double_t dev = fMuonSearchPar->GetDeviation()*fGeomCam->GetConvMm2Deg();
     189
    187190    // Check if this is a 'Write-Out' candidate
    188     if (fMuonCalibPar->GetArcPhi()>160    && fMuonSearchPar->GetRadius()<400 &&
    189         fMuonSearchPar->GetDeviation()<50 && fMuonSearchPar->GetRadius()>170)
     191    if (arcphi>160 && rad>0.573  && rad<1.35 && dev<0.169)
    190192        fMuonCalibPar->SetReadyToSave();
    191193
Note: See TracChangeset for help on using the changeset viewer.