Changeset 47 in JEM-EUSO for esaf_lal


Ignore:
Timestamp:
Mar 21, 2013, 4:11:34 PM (11 years ago)
Author:
moretto
Message:

electronics for new mapmts

Location:
esaf_lal/branches/test_electronics
Files:
1 deleted
7 edited

Legend:

Unmodified
Added
Removed
  • esaf_lal/branches/test_electronics/include/R11265U200Photomultiplier.hh

    r40 r47  
    44//
    55// S.Ogawa & M. Bertaina 2004-11-26
    6 // C.Moretto & S.Dagoret-Campagne 2013-02-21
     6// C.Moretto &S.Dagoret-Campagne 2013-02-21
    77
    88#ifndef __R11265U200PHOTOMULTIPLIER_HH_
  • esaf_lal/branches/test_electronics/src/ElectronicsFactory.cc

    r44 r47  
    1515#include "OpticsFactory.hh"
    1616#include "Photomultiplier.hh"
    17 #include "R11265UPhotomultiplier.hh"
     17#include "R11265U100Photomultiplier.hh"
     18#include "R11265U200Photomultiplier.hh"
    1819#include "R7600M64Photomultiplier.hh"
    1920#include "R8900M36Photomultiplier.hh"
     
    161162
    162163    string type = Conf()->GetStr("ElectronicsFactory.PmtType");
    163 std::cout << "***************************************************PmtType => " << type << std::endl;
    164 
    165164    if ( type == "R7600M64Photomultiplier" ) {
    166165        return new R7600M64Photomultiplier( id , g );
     
    172171        return new R8900M64Photomultiplier( id , g );
    173172    }
    174     if ( type == "R11265U100Photomultiplier" || type == "R11265U200Photomultiplier" ) {
    175 std::cout << "la fonction ElectronicsFactory::MakePmt retourne un new R11265UPhotomultiplier" << std::endl;
    176         return new R11265UPhotomultiplier( id , g );
     173    if ( type == "R11265U100Photomultiplier" ) {
     174        return new R11265U100Photomultiplier( id , g );
     175    }
     176    if ( type == "R11265U200Photomultiplier" ) {
     177        return new R11265U200Photomultiplier( id , g );
    177178    }
    178179    FatalError(type + ", unknown Pmt Type");
  • esaf_lal/branches/test_electronics/src/EusoElectronics.cc

    r37 r47  
    474474    // Simulate the whole electronics behaviour for this event
    475475    //
    476 
    477 std::cout << "****************************************************************" << std::endl;
    478 std::cout << "Salut!! Ici on utilise la methode => EusoElectronics::Simulate()" << std::endl;
    479 std::cout << "****************************************************************" << std::endl;
    480476
    481477    if ( !fSimulateElectronics ) {
  • esaf_lal/branches/test_electronics/src/MacroCell.cc

    r37 r47  
    158158    // (user must have called Simulate for each of them)
    159159    //
    160 
    161 std::cout << "****************************************************************" << std::endl;
    162 std::cout << "Salut!! ici on utilise la methode => MacroCell::CheckPmtState()" << std::endl;
    163 std::cout << "****************************************************************" << std::endl;
    164 
    165160
    166161    for( size_t i=0; i < fPmts.size(); i++) {
  • esaf_lal/branches/test_electronics/src/Photomultiplier.cc

    r37 r47  
    314314    // the Photomultipliers job ends here. The Front End simulation
    315315    // and MacroCell simulation is assumed to be handled by some one else.
    316 std::cout << "*****************************************************************************" << std::endl;
    317 std::cout << "Salut!! Ici on utillise la methode => Photomultiplier::Simulate()" << std::endl;
    318 std::cout << "*****************************************************************************" << std::endl;
    319316
    320317    // do not do it twice or if empty
  • esaf_lal/branches/test_electronics/src/R11265U200Photomultiplier.cc

    r40 r47  
    1010//_____________________________________________________________________________
    1111//
    12 //   R11265U-200 high collection efficiency photomultiplier tube
     12//   R11265U-100 high collection efficiency photomultiplier tube
    1313//   ===========================================================
    1414// 
  • esaf_lal/branches/test_electronics/src/StandardMacroCell.cc

    r37 r47  
    4040    // Electronics simulation for this macrocell
    4141    //
    42 
    43 std::cout << "****************************************************************" << std::endl;
    44 std::cout << "Salut!! Ici on utilise la methode StandardMacroCell::Simulate()" << std::endl;
    45 std::cout << "****************************************************************" << std::endl;
    4642
    4743    ConfigFileParser *pConfig = Config::Get()->GetCF("Electronics","MacroCell");
Note: See TracChangeset for help on using the changeset viewer.