Changeset 212 in Idarraga


Ignore:
Timestamp:
Jul 17, 2011, 2:14:00 PM (13 years ago)
Author:
idarraga
Message:
 
Location:
EUTelraw2mdm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • EUTelraw2mdm/allpix_dm.cc

    r206 r212  
    665665}
    666666
     667/* load a single frame pixel (X,Y,C) + lvl1*/
     668Bool_t FramesHandler::LoadFramePixel(Int_t col, Int_t row, Int_t counts, Int_t lvl1){
     669
     670        m_aFrame->FillOneElement(col, row, m_width, counts);
     671        m_aFrame->SetLVL1(col, row, m_width, lvl1);
     672
     673        return true;
     674}
     675
    667676/* load a single frame pixel (X,Y,C) */
    668677Bool_t FramesHandler::LoadFramePixel(Int_t col, Int_t row, Int_t counts){
  • EUTelraw2mdm/allpix_dm.h

    r204 r212  
    176176        /* load a single frame pixel (X,Y,C), fills m_aFrame */
    177177        Bool_t LoadFramePixel(Int_t, Int_t, Int_t);
     178        /* load a single frame pixel (X,Y,C), fills m_aFrame with LVL1 info*/
     179        Bool_t LoadFramePixel(Int_t, Int_t, Int_t, Int_t);
    178180        /* load a lvl1 trigger */
    179181        void SetLVL1(Int_t, Int_t, Int_t);
Note: See TracChangeset for help on using the changeset viewer.