Report problems to ATLAS LXR Team (with time and IP address indicated)

The LXR Cross Referencer

source navigation ]
diff markup ]
identifier search ]
general search ]
 
 
Architecture: linux ]
Version: head ] [ nightly ] [ GaudiDev ]
  Links to LXR source navigation pages for stable releases [ 12.*.* ]   [ 13.*.* ]   [ 14.*.* ]   [ 15.*.* ] 

001 #include "BranchDecoderFactory.h"
002 
003 #include "PedestalBranchDecoder.h"
004 #include "ByteStreamBranchDecoder.h"
005 #include "IdMapBranchDecoder.h"
006 
007 BranchDecoderFactory::~BranchDecoderFactory(void)
008 {
009 }
010 
011 IBranchDecoder* BranchDecoderFactory::createBranchDecoder(int branchType) {
012         switch(branchType) {
013                 case ePedestal:
014                         return new PedestalBranchDecoder();
015                         break;
016                 case eIdMap:
017                         return new IdMapBranchDecoder();
018                         return 0;
019                         break;
020                 case eByteStream:
021                         return new ByteStreamBranchDecoder();
022                         break;
023                 default:
024                         return 0;
025         }
026 }

source navigation ] diff markup ] identifier search ] general search ]

Due to the LXR bug, the updates fail sometimes to remove references to deleted files. The Saturday's full rebuilds fix these problems
This page was automatically generated by the LXR engine. Valid HTML 4.01!