CMS 3D CMS Logo

decayParser.h

Go to the documentation of this file.
00001 #ifndef CANDCOMBINER_DECAYPARSER_H
00002 #define CANDCOMBINER_DECAYPARSER_H
00003 // -*- C++ -*-
00004 //
00005 // Package:     CandCombiner
00006 // Class  :     decayParser
00007 // 
00016 //
00017 // Original Author:  
00018 //         Created:  Sun Aug  7 20:26:36 EDT 2005
00019 // $Id: decayParser.h,v 1.1 2007/11/14 09:55:39 llista Exp $
00020 //
00021 
00022 // system include files
00023 
00024 // user include files
00025 #include <vector>
00026 #include <iostream>
00027 #include <string>
00028 #include <boost/spirit/core.hpp>
00029 #include <boost/spirit/actor/push_back_actor.hpp>
00030 #include "FWCore/ParameterSet/interface/InputTag.h"
00031 
00032 // forward declarations
00033 
00034 namespace cand {
00035   namespace parser {
00036     struct ConjInfo {
00037       enum Mode { kPrimary, kBar, kPlus, kMinus } mode_;
00038       edm::InputTag tag_;
00039       ConjInfo( const std::string& tag ) : mode_( kPrimary ), tag_( tag ) { }
00040       ConjInfo( const char* begin, const char* end ) : mode_( kPrimary ), tag_( std::string( begin, end ) ) { }
00041     };
00042     
00043     inline
00044     std::ostream& operator<<(std::ostream& out, const ConjInfo& info ) {
00045       return out << info.tag_ .encode() << " " 
00046                  << ( 0 == info.mode_ ? "p" : ( info.mode_ == ConjInfo::kBar ? "b" : (info.mode_ == ConjInfo::kPlus ? "+" : "-" ) ) );
00047     }
00048     
00049     bool decayParser( const std::string& iValue, std::vector<ConjInfo>& oStrings );
00050   }
00051 }
00052 
00053 #endif /* CANDCOMBINER_DECAYPARSER_H */

Generated on Tue Jun 9 17:40:59 2009 for CMSSW by  doxygen 1.5.4