Changeset 18180 for branches


Ignore:
Timestamp:
05/12/15 19:33:34 (10 years ago)
Author:
dbaack
Message:
Fixed bug with non cleared "PhotonEvent"
Location:
branches/Corsika7405Compatibility
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • branches/Corsika7405Compatibility/Makefile

    r18179 r18180  
    7878          mmovie \
    7979          mtools \
    80           mmuon \
    81           mdebug
     80          mmuon
     81         
    8282
    8383LIBNOVA_PATH := `which libnovaconfig`
  • branches/Corsika7405Compatibility/mcorsika/MCorsikaRead.cc

    r18179 r18180  
    5454#include "MCorsikaEvtHeader.h"
    5555
     56#include "../msim/MPhotonData.h"
     57
    5658#include "MPhotonEvent.h"
    5759
     
    476478Int_t MCorsikaRead::Process()
    477479{
    478         //std::cout << "Process \n\n" << std::endl;
     480        fEvent->Clear();
     481        fEvent->Reset();
     482        fEvent->Resize(0);
     483
     484
     485        std::cout << "\n\n MCorsikaRead Process " << std::endl;
    479486   while (1)  // loop for multiple input files
    480487   {
    481            //std::cout << "OuterLoop \n\n" << std::endl;
    482488
    483489      if (fInFormat)
     
    498504         Int_t status = kTRUE;
    499505
    500          //std::cout << "||||ReadState: " << fReadState
    501         //               << "  Block: " << fBlockType << "\n\n" << std::endl;
    502 
    503506         switch (fBlockType)
    504507            {
     
    516519               Float_t buffer[272];
    517520               static int asd = 0;
    518               // std::cout << "EventHeader |||||| " << ++asd << std::endl;
    519521               if (!fInFormat->Read(buffer, 272 * sizeof(Float_t)))
    520522                  return kFALSE;
     
    528530               status = fEvtHeader->ReadEvt(buffer);
    529531
    530                //fEvtHeader->Print();
    531                //std::cout << "TotReuse: " << fEvtHeader->GetTotReuse();
    532532
    533533               if (fArrayIdx >= (Int_t)fEvtHeader->GetTotReuse())
     
    543543
    544544            case 1204: // top level block for one array (only for eventio data)
    545             //  std::cout << "EventIO1 |||||||" << std::endl;
    546                if (fArrayIdx < 0 || fArrayIdx == fBlockIdentifier)
     545              if (fArrayIdx < 0 || fArrayIdx == fBlockIdentifier)
    547546                  {
    548547                  fReadState = 4;
     
    558557            case 1205: // eventio data
    559558               {
    560               // std::cout << "EventIO2 |||||||" << std::endl;
    561559               Int_t telIdx   = fBlockIdentifier % 1000;
    562            //    std::cout << "TelIDX: " << telIdx << " fTelescopeIdx:" << fTelescopeIdx
    563             //             << " fBlockVersion" << fBlockVersion << std::endl;
    564560
    565561               if (fBlockVersion == 0  && (fTelescopeIdx < 0 || fTelescopeIdx ==  telIdx) )
    566562               {
    567563                  status = fEvent->ReadEventIoEvt(fInFormat);
    568 
    569                   //std::cout << " ArrayIdx:" << fBlockIdentifier / 1000.0 << std::endl;
    570564
    571565                  Int_t arrayIdx = fBlockIdentifier / 1000;
     
    579573                  fEvent->SimWavelength(fRunHeader->GetWavelengthMin(),
    580574                                          fRunHeader->GetWavelengthMax());
     575
     576
     577                  bool tmpWeight = false;
     578                  std::cout << "ReadEventIO Telescope data with " << fEvent->GetNumPhotons() << std::endl;
     579                  for(int i=0; i<fEvent->GetNumPhotons(); i++)
     580                  {
     581
     582                          const MPhotonData &ph = (*fEvent)[i];
     583                          if(ph.GetWeight() != 1)
     584                                  tmpWeight = true;
     585                  }
     586                  if(tmpWeight)
     587                          std::cout << "CorsikaRead Photon weight != 1" << std::endl;
     588
    581589                  }
    582590               else
     
    591599
    592600            case 1209:  // the event end
    593            //   std::cout << "EventEnd ||||||" << std::endl;
    594601               status = fEvtHeader->ReadEvtEnd(fInFormat);
    595602               
     
    608615
    609616            case 1210:  // the run end
    610                 //std::cout << "RunEnd ||||||" << std::endl;
    611                status = fRunHeader->ReadEvtEnd(fInFormat, kTRUE);
     617                status = fRunHeader->ReadEvtEnd(fInFormat, kTRUE);
    612618               fNumEvents += fRunHeader->GetNumEvents();
    613619               //fRunHeader->SetReadyToSave();
     
    637643
    638644            case 1109:  // save corsika events
    639                 //std::cout << "SaveCorsika ||||||" << std::endl;
     645                std::cout << "Block1109" << std::endl;
    640646               fEvtHeader->InitXY();
    641647               status = fEvent->ReadCorsikaEvt(&fRawEvemtBuffer[0],
     
    667673            }
    668674
    669          std::cout << "Status: " << status << std::endl;
    670 
    671675         if (status != kTRUE)
    672676            // there was an error while data were read
     
    674678
    675679         Int_t headerStatus =  ReadNextBlockHeader();
    676 
    677          std::cout << "Header Status: " << headerStatus << std::endl;
    678 
    679680
    680681         if (headerStatus == kFALSE)
  • branches/Corsika7405Compatibility/mdebug/Makefile

    r18179 r18180  
    1919#  connect the include files defined in the config.mk file
    2020#
    21 INCLUDES = -I. -I../mbase -I../mgui
     21INCLUDES = -I. -I../mbase -I../mgeom -I../msim -I../msignal -I../mcorsika \
     22           -I../mmc -I../mgui -I../mcalib -I../mraw -I../mfileio -I../melectronics \
     23           -I../mtrigger -I../mpedestal -I../msimreflector
    2224# mgui - MCameraDC <MCamEvent>
    2325
  • branches/Corsika7405Compatibility/msim/MSimAtmosphere.cc

    r9429 r18180  
    786786Int_t MSimAtmosphere::Process()
    787787{
     788        std::cout << "MSimAtmo with " << fEvt->GetNumPhotons() << std::endl;
     789
    788790    // Get the number of photons in the list
    789791    const Int_t num = fEvt->GetNumPhotons();
     
    792794    //         * upgoing particles
    793795    //         * Can we take the full length until the camera into account?
     796
     797        bool tmpWeight = false;
     798        for (int i = 0; i < fEvt->GetNumPhotons(); i++) {
     799
     800                const MPhotonData &ph = (*fEvt)[i];
     801                if (ph.GetWeight() != 1)
     802                        tmpWeight = true;
     803        }
     804        if (tmpWeight)
     805                std::cout << "MSimAtmo Photon weight != 1 \a\a" << std::endl;
     806
    794807
    795808    // Counter for number of total and final events
     
    814827    // Now we shrink the array to the number of new entries.
    815828    fEvt->Shrink(cnt);
     829
    816830
    817831    return kTRUE;
  • branches/Corsika7405Compatibility/msim/MSimMMCS.cc

    r9937 r18180  
    191191Int_t MSimMMCS::Process()
    192192{
     193        std::cout << "MSimMMCS " << std::endl;
     194
    193195    fMcEvtBasic->SetEnergy(fEvtHeader->GetTotalEnergy());
    194196    fMcEvtBasic->SetImpact(fEvtHeader->GetImpact());
  • branches/Corsika7405Compatibility/msimcamera/MSimBundlePhotons.cc

    r9518 r18180  
    147147    // Initialize a counter for the final number of photons.
    148148    Int_t cnt=0;
     149       
    149150
    150151    // Loop over all photons
Note: See TracChangeset for help on using the changeset viewer.