1 |
/** @file |
/** @file |
2 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
3 |
* $Date: 2005/03/03 12:57:48 $ |
* $Date: 2005/03/04 15:54:11 $ |
4 |
* $Revision: 2.7 $ |
* $Revision: 3.0 $ |
5 |
* |
* |
6 |
* Implementation of the PamelaRun class. |
* Implementation of the PamelaRun class. |
7 |
*/ |
*/ |
586 |
* @param type the package type of the trees to fill. |
* @param type the package type of the trees to fill. |
587 |
*/ |
*/ |
588 |
void PamelaRun::FillTrees(const PacketType* type) { |
void PamelaRun::FillTrees(const PacketType* type) { |
589 |
for (TTreeList::iterator j = WritingRootTrees[type].begin(); |
try{ |
590 |
j != WritingRootTrees[type].end(); j++) { |
for (TTreeList::iterator j = WritingRootTrees[type].begin(); |
591 |
(*j)->Fill(); |
j != WritingRootTrees[type].end(); j++) { |
592 |
; |
(*j)->Fill(); |
593 |
|
} |
594 |
|
} catch(Exception exc){ |
595 |
|
logger->fatal("ORRORE!!!"); |
596 |
} |
} |
597 |
} |
} |
598 |
|
|