Fork me on GitHub

Changeset 571 in svn


Ignore:
Timestamp:
Nov 2, 2011, 5:06:22 PM (13 years ago)
Author:
cp3-support
Message:

upgrade HepMC to version 2.06.05

Location:
trunk/Utilities/HepMC/src
Files:
9 added
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/Utilities/HepMC/src/CompareGenEvent.cc

    r349 r571  
    9191
    9292bool compareWeights( GenEvent* e1, GenEvent* e2 ) {
    93    WeightContainer w1 = e1->weights();
    94    WeightContainer w2 = e2->weights();
    95    if( w1.size() != w2.size() ) {
    96        std::cerr << "compareWeights: size of weight container differs " << std::endl;
    97        return false;
    98    }
    99    for( int i=0; i<w1.size(); ++i ) {
    100        if( w1[i] != w2[i] ) {
    101            std::cerr << "compareWeights: weight container entry "
    102                      << i << " differs" << std::endl;
    103            return false;
    104        }
    105    }
    106    return true;
     93   if( e1->weights() == e2->weights() ) return true;
     94   std::cerr << "compareWeights: weight containers differ " << std::endl;
     95   return false;
    10796}
    10897
  • trunk/Utilities/HepMC/src/GenEvent.cc

    r349 r571  
    1414
    1515#include "GenEvent.h"
     16#include "GenCrossSection.h"
    1617#include "Version.h"
     18#include "StreamHelpers.h"
    1719
    1820namespace HepMC {
     
    3840        m_vertex_barcodes(),
    3941        m_particle_barcodes(),
     42        m_cross_section(0),
    4043        m_heavy_ion(0),
    4144        m_pdf_info(0),
     
    7174        m_vertex_barcodes(),
    7275        m_particle_barcodes(),
     76        m_cross_section(0),
    7377        m_heavy_ion( new HeavyIon(ion) ),
    7478        m_pdf_info( new PdfInfo(pdf) ),
     
    102106        m_vertex_barcodes(),
    103107        m_particle_barcodes(),
     108        m_cross_section(0),
    104109        m_heavy_ion(0),
    105110        m_pdf_info(0),
     
    136141        m_vertex_barcodes(),
    137142        m_particle_barcodes(),
     143        m_cross_section(0),
    138144        m_heavy_ion( new HeavyIon(ion) ),
    139145        m_pdf_info( new PdfInfo(pdf) ),
     
    162168        m_vertex_barcodes      ( /* inevent.m_vertex_barcodes */ ),
    163169        m_particle_barcodes    ( /* inevent.m_particle_barcodes */ ),
     170        m_cross_section        ( inevent.cross_section() ? new GenCrossSection(*inevent.cross_section()) : 0 ),
    164171        m_heavy_ion            ( inevent.heavy_ion() ? new HeavyIon(*inevent.heavy_ion()) : 0 ),
    165172        m_pdf_info             ( inevent.pdf_info() ? new PdfInfo(*inevent.pdf_info()) : 0 ),
     
    168175    {
    169176        /// deep copy - makes a copy of all vertices!
    170         //++s_counter;
    171177        //
    172178
     
    234240        m_vertex_barcodes.swap(   other.m_vertex_barcodes );
    235241        m_particle_barcodes.swap( other.m_particle_barcodes );
     242        std::swap(m_cross_section        , other.m_cross_section        );
    236243        std::swap(m_heavy_ion            , other.m_heavy_ion            );
    237244        std::swap(m_pdf_info             , other.m_pdf_info             );
     
    252259    {
    253260        /// Deep destructor.
    254         /// deletes all vertices/particles in this evt
    255         ///
     261        /// deletes all vertices/particles in this GenEvent
     262        /// deletes the associated HeavyIon and PdfInfo
    256263        delete_all_vertices();
     264        delete m_cross_section;
    257265        delete m_heavy_ion;
    258266        delete m_pdf_info;
    259         //--s_counter;
    260267    }
    261268
     
    281288                  : 0 )
    282289             << "\n";
    283         //ostr << " Current Memory Usage: "
    284         //     << GenEvent::counter() << " events, "
    285         //     << GenVertex::counter() << " vertices, "
    286         //     << GenParticle::counter() << " particles.\n";
    287290        write_units( ostr );
     291        write_cross_section(ostr);
    288292        ostr << " Entries this event: " << vertices_size() << " vertices, "
    289293             << particles_size() << " particles.\n";
     
    302306        // Weights
    303307        ostr << " Wgts(" << weights().size() << ")=";
    304         for ( WeightContainer::const_iterator wgt = weights().begin();
    305               wgt != weights().end(); ++wgt ) { ostr << *wgt << " "; }
    306         ostr << "\n";
     308        weights().print(ostr);
    307309        ostr << " EventScale " << event_scale()
    308310             << " [energy] \t alphaQCD=" << alphaQCD()
     
    367369        ///
    368370        delete_all_vertices();
     371        // remove existing objects and set pointers to null
     372        delete m_cross_section;
     373        m_cross_section = 0;
    369374        delete m_heavy_ion;
     375        m_heavy_ion = 0;
    370376        delete m_pdf_info;
     377        m_pdf_info = 0;
    371378        m_signal_process_id = 0;
    372379        m_beam_particle_1 = 0;
    373380        m_beam_particle_2 = 0;
    374381        m_event_number = 0;
     382        m_mpi = -1;
    375383        m_event_scale = -1;
    376384        m_alphaQCD = -1;
     
    378386        m_weights = std::vector<double>();
    379387        m_random_states = std::vector<long>();
    380         //m_momentum_unit = ;
    381         //m_position_unit = ;
     388        // resetting unit information
     389        m_momentum_unit = Units::default_momentum_unit();
     390        m_position_unit = Units::default_length_unit();
    382391        // error check just to be safe
    383392        if ( m_vertex_barcodes.size() != 0
     
    388397                      << m_vertex_barcodes.size() << "  "
    389398                      << m_particle_barcodes.size() << std::endl;
    390             //std::cerr << "Total Number vtx,particle in memory "
    391              //         << "after method called = "
    392              //         << GenVertex::counter() << "\t"
    393                 //      << GenParticle::counter() << std::endl;
    394399        }
    395400        return;
     
    420425                      << m_vertex_barcodes.size() << "  "
    421426                      << m_particle_barcodes.size() << std::endl;
    422             //std::cerr << "Total Number vtx,particle in memory "
    423             //          << "after method called = "
    424             //          << GenVertex::counter() << "\t"
    425                 //      << GenParticle::counter() << std::endl;
    426427        }
    427428    }
     
    602603    }
    603604
     605    void GenEvent::write_cross_section( std::ostream& os ) const
     606    {
     607        // write the GenCrossSection information if the cross section was set
     608        if( !cross_section() ) return;
     609        if( cross_section()->is_set() ) {
     610            os << " Cross Section: " << cross_section()->cross_section() ;
     611            os << " +/- " << cross_section()->cross_section_error() ;
     612            os << std::endl;
     613        }
     614    }
     615
    604616   bool GenEvent::use_momentum_unit( Units::MomentumUnit newunit ) {
    605617        // currently not exception-safe.
     
    651663    } 
    652664
     665    bool GenEvent::is_valid() const {
     666        /// A GenEvent is presumed valid if it has both associated
     667        /// particles and vertices.   No other information is checked.
     668        if ( vertices_empty() ) return false;
     669        if ( particles_empty() ) return false;
     670        return true;
     671    }
     672
     673    std::ostream & GenEvent::write_beam_particles(std::ostream & os,
     674                         std::pair<HepMC::GenParticle *,HepMC::GenParticle *> pr )
     675    {
     676        GenParticle* p = pr.first;
     677        if(!p) {
     678           detail::output( os, 0 );
     679        } else {
     680           detail::output( os, p->barcode() );
     681        }
     682        p = pr.second;
     683        if(!p) {
     684           detail::output( os, 0 );
     685        } else {
     686           detail::output( os, p->barcode() );
     687        }
     688
     689        return os;
     690    }
     691
     692    std::ostream & GenEvent::write_vertex(std::ostream & os, GenVertex const * v)
     693    {
     694        if ( !v || !os ) {
     695            std::cerr << "GenEvent::write_vertex !v||!os, "
     696                      << "v="<< v << " setting badbit" << std::endl;
     697            os.clear(std::ios::badbit);
     698            return os;
     699        }
     700        // First collect info we need
     701        // count the number of orphan particles going into v
     702        int num_orphans_in = 0;
     703        for ( GenVertex::particles_in_const_iterator p1
     704                  = v->particles_in_const_begin();
     705              p1 != v->particles_in_const_end(); ++p1 ) {
     706            if ( !(*p1)->production_vertex() ) ++num_orphans_in;
     707        }
     708        //
     709        os << 'V';
     710        detail::output( os, v->barcode() ); // v's unique identifier
     711        detail::output( os, v->id() );
     712        detail::output( os, v->position().x() );
     713        detail::output( os, v->position().y() );
     714        detail::output( os, v->position().z() );
     715        detail::output( os, v->position().t() );
     716        detail::output( os, num_orphans_in );
     717        detail::output( os, (int)v->particles_out_size() );
     718        detail::output( os, (int)v->weights().size() );
     719        for ( WeightContainer::const_iterator w = v->weights().begin();
     720              w != v->weights().end(); ++w ) {
     721            detail::output( os, *w );
     722        }
     723        detail::output( os,'\n');
     724        // incoming particles
     725        for ( GenVertex::particles_in_const_iterator p2
     726                  = v->particles_in_const_begin();
     727              p2 != v->particles_in_const_end(); ++p2 ) {
     728            if ( !(*p2)->production_vertex() ) {
     729                write_particle( os, *p2 );
     730            }
     731        }
     732        // outgoing particles
     733        for ( GenVertex::particles_out_const_iterator p3
     734                  = v->particles_out_const_begin();
     735              p3 != v->particles_out_const_end(); ++p3 ) {
     736            write_particle( os, *p3 );
     737        }
     738        return os;
     739    }
     740
     741    std::ostream & GenEvent::write_particle( std::ostream & os, GenParticle const * p )
     742    {
     743        if ( !p || !os ) {
     744            std::cerr << "GenEvent::write_particle !p||!os, "
     745                      << "p="<< p << " setting badbit" << std::endl;
     746            os.clear(std::ios::badbit);
     747            return os;
     748        }
     749        os << 'P';
     750        detail::output( os, p->barcode() );
     751        detail::output( os, p->pdg_id() );
     752        detail::output( os, p->momentum().px() );
     753        detail::output( os, p->momentum().py() );
     754        detail::output( os, p->momentum().pz() );
     755        detail::output( os, p->momentum().e() );
     756        detail::output( os, p->generated_mass() );
     757        detail::output( os, p->status() );
     758        detail::output( os, p->polarization().theta() );
     759        detail::output( os, p->polarization().phi() );
     760        // since end_vertex is oftentimes null, this CREATES a null vertex
     761        // in the map
     762        detail::output( os,   ( p->end_vertex() ? p->end_vertex()->barcode() : 0 )  );
     763        os << ' ' << p->flow() << "\n";
     764
     765        return os;
     766    }
     767
    653768} // HepMC
  • trunk/Utilities/HepMC/src/GenParticle.cc

    r349 r571  
    3939        m_pdg_id( inparticle.pdg_id() ),
    4040        m_status( inparticle.status() ),
    41         m_flow(this),
     41        m_flow(inparticle.flow()),
    4242        m_polarization( inparticle.polarization() ),
    4343        m_production_vertex(0),
     
    188188    /// Dump this particle's full info to ostr
    189189    std::ostream& operator<<( std::ostream& ostr, const GenParticle& part ) {
     190        // find the current stream state
     191        std::ios_base::fmtflags orig = ostr.flags();
     192        std::streamsize prec = ostr.precision();
    190193        ostr << " ";
    191194        ostr.width(9);
     
    199202        ostr << part.momentum().px() << ",";
    200203        ostr.width(9);
    201         ostr.precision(2);
    202204        ostr << part.momentum().py() << ",";
    203205        ostr.width(9);
    204         ostr.precision(2);
    205206        ostr << part.momentum().pz() << ",";
    206207        ostr.width(9);
    207         ostr.precision(2);
    208208        ostr << part.momentum().e() << " ";
    209209        ostr.setf(std::ios::fmtflags(0), std::ios::floatfield);
     
    227227            ostr << (void*)part.end_vertex();
    228228        }
     229        // restore the stream state
     230        ostr.flags(orig);
     231        ostr.precision(prec);
    229232        return ostr;
    230233    }
  • trunk/Utilities/HepMC/src/GenVertex.cc

    r349 r571  
    144144
    145145    void GenVertex::print( std::ostream& ostr ) const {
     146        // find the current stream state
     147        std::ios_base::fmtflags orig = ostr.flags();
     148        std::streamsize prec = ostr.precision();
    146149        if ( barcode()!=0 ) {
    147150            if ( position() != FourVector(0,0,0,0) ) {
     
    159162                ostr << position().x() << ",";
    160163                ostr.width(9);
    161                 ostr.precision(2);
    162164                ostr << position().y() << ",";
    163165                ostr.width(9);
    164                 ostr.precision(2);
    165166                ostr << position().z() << ",";
    166167                ostr.width(9);
    167                 ostr.precision(2);
    168168                ostr << position().t();
    169169                ostr.setf(std::ios::fmtflags(0), std::ios::floatfield);
     
    198198                ostr << position().x();
    199199                ostr.width(9);
    200                 ostr.precision(2);
    201200                ostr << position().y();
    202201                ostr.width(9);
    203                 ostr.precision(2);
    204202                ostr << position().z();
    205203                ostr.width(9);
    206                 ostr.precision(2);
    207204                ostr << position().t();
    208205                ostr.setf(std::ios::fmtflags(0), std::ios::floatfield);
     
    249246            ostr << **part2 << std::endl;
    250247        }
     248        // restore the stream state
     249        ostr.flags(orig);
     250        ostr.precision(prec);
    251251    }
    252252
  • trunk/Utilities/HepMC/src/IO_AsciiParticles.cc

    r349 r571  
    1111#include "IO_AsciiParticles.h"
    1212#include "GenEvent.h"
    13 #include "ParticleDataTable.h"
    1413#include "Version.h"
    1514
  • trunk/Utilities/HepMC/src/IO_GenEvent.cc

    r349 r571  
    88
    99#include "IO_GenEvent.h"
     10#include "IO_Exception.h"
    1011#include "GenEvent.h"
    11 #include "ParticleDataTable.h"
    12 #include "HeavyIon.h"
    13 #include "PdfInfo.h"
    14 #include "CommonIO.h"
    15 #include "Version.h"
     12#include "StreamHelpers.h"
    1613
    1714namespace HepMC {
     
    2320      m_istr(0),
    2421      m_iostr(0),
    25       m_finished_first_event_io(false),
    2622      m_have_file(false),
    27       m_common_io()
     23      m_error_type(IO_Exception::OK),
     24      m_error_message()
    2825    {
    2926        if ( (m_mode&std::ios::out && m_mode&std::ios::in) ||
    3027             (m_mode&std::ios::app && m_mode&std::ios::in) ) {
    31             std::cerr << "IO_GenEvent::IO_GenEvent Error, open of file requested "
    32                       << "of input AND output type. Not allowed. Closing file."
    33                       << std::endl;
     28            m_error_type = IO_Exception::InputAndOutput;
     29            m_error_message ="IO_GenEvent::IO_GenEvent Error, open of file requested of input AND output type. Not allowed. Closing file.";
     30            std::cerr << m_error_message << std::endl;
    3431            m_file.close();
    3532            return;
    3633        }
    37         // precision 16 (# digits following decimal point) is the minimum that
    38         //  will capture the full information stored in a double
    39         m_file.precision(16);
    40         // we use decimal to store integers, because it is smaller than hex!
    41         m_file.setf(std::ios::dec,std::ios::basefield);
    42         m_file.setf(std::ios::scientific,std::ios::floatfield);
    4334        // now we set the streams
    4435        m_iostr = &m_file;
     
    4637            m_istr = &m_file;
    4738            m_ostr = NULL;
     39            detail::establish_input_stream_info(m_file);
    4840        }
    4941        if ( m_mode&std::ios::out ) {
    5042            m_ostr = &m_file;
    5143            m_istr = NULL;
     44            detail::establish_output_stream_info(m_file);
    5245        }
    5346        m_have_file = true;
     
    5952      m_istr(&istr),
    6053      m_iostr(&istr),
    61       m_finished_first_event_io(false),
    6254      m_have_file(false),
    63       m_common_io()
    64     { }
     55      m_error_type(IO_Exception::OK),
     56      m_error_message()
     57    {
     58        detail::establish_input_stream_info( istr );
     59    }
    6560
    6661    IO_GenEvent::IO_GenEvent( std::ostream & ostr )
     
    6863      m_istr(0),
    6964      m_iostr(&ostr),
    70       m_finished_first_event_io(false),
    7165      m_have_file(false),
    72       m_common_io()
    73     {
    74         // precision 16 (# digits following decimal point) is the minimum that
    75         //  will capture the full information stored in a double
    76         m_ostr->precision(16);
    77         // we use decimal to store integers, because it is smaller than hex!
    78         m_ostr->setf(std::ios::dec,std::ios::basefield);
    79         m_ostr->setf(std::ios::scientific,std::ios::floatfield);
    80     }
     66      m_error_type(IO_Exception::OK),
     67      m_error_message()
     68   {
     69        detail::establish_output_stream_info( ostr );
     70   }
    8171
    8272    IO_GenEvent::~IO_GenEvent() {
    83         write_end_listing();
     73        if ( m_ostr != NULL ) {
     74            write_HepMC_IO_block_end(*m_ostr);
     75        }
    8476        if(m_have_file) m_file.close();
    8577    }
    8678
    87     void IO_GenEvent::use_input_units( Units::MomentumUnit mom, Units::LengthUnit len ) {
    88         m_common_io.use_input_units(mom,len);
     79    void IO_GenEvent::use_input_units( Units::MomentumUnit mom,
     80                                       Units::LengthUnit len ) {
     81        if( m_istr != NULL ) {
     82            set_input_units( *m_istr, mom, len );
     83        }
    8984    }
    9085
     
    9994    }
    10095
     96    void IO_GenEvent::precision( int size )  {
     97        if( size > 16 ) {
     98            std::cerr << "IO_GenEvent::precision Error, "
     99                      << "precision is greater than 16. "
     100                      << "Not allowed. Using default precision of 16."
     101                      << std::endl;
     102            size = 16;
     103        }
     104        if(m_ostr) {
     105            m_ostr->precision(size);
     106        }
     107    }
     108       
     109    bool IO_GenEvent::fill_next_event( GenEvent* evt ){
     110        //
     111        // reset error type
     112        m_error_type = IO_Exception::OK;
     113        //
     114        // test that evt pointer is not null
     115        if ( !evt ) {
     116            m_error_type = IO_Exception::NullEvent;
     117            m_error_message = "IO_GenEvent::fill_next_event error - passed null event.";
     118            std::cerr << m_error_message << std::endl;
     119            return false;
     120        }
     121        // make sure the stream is good, and that it is in input mode
     122        if ( !(*m_istr) ) return false;
     123        if ( !m_istr ) {
     124            m_error_type = IO_Exception::WrongFileType;
     125            m_error_message = "HepMC::IO_GenEvent::fill_next_event attempt to read from output file.";
     126            std::cerr << m_error_message << std::endl;
     127            return false;
     128        }
     129        // use streaming input
     130        try {
     131            *m_istr >> *evt;
     132        }
     133        catch (IO_Exception& e) {
     134            m_error_type = IO_Exception::InvalidData;
     135            m_error_message = e.what();
     136            evt->clear();
     137            return false;
     138        }
     139        if( evt->is_valid() ) return true;
     140        return false;
     141    }
     142
    101143    void IO_GenEvent::write_event( const GenEvent* evt ) {
    102144        /// Writes evt to output stream. It does NOT delete the event after writing.
     
    105147        if ( !evt  ) return;
    106148        if ( m_ostr == NULL ) {
    107             std::cerr << "HepMC::IO_GenEvent::write_event "
    108                       << " attempt to write to input file." << std::endl;
     149            m_error_type = IO_Exception::WrongFileType;
     150            m_error_message = "HepMC::IO_GenEvent::write_event attempt to write to input file.";
     151            std::cerr << m_error_message << std::endl;
    109152            return;
    110153        }
    111154        //
    112155        // write event listing key before first event only.
    113         if ( !m_finished_first_event_io ) {
    114             m_finished_first_event_io = 1;
    115             *m_ostr << "\n" << "HepMC::Version " << versionName();
    116             *m_ostr << "\n";
    117             m_common_io.write_IO_GenEvent_Key(*m_ostr);
    118         }
    119         //
    120         // output the event data including the number of primary vertices
    121         //  and the total number of vertices
    122         std::vector<long> random_states = evt->random_states();
    123         *m_ostr << 'E';
    124         output( evt->event_number() );
    125         output( evt->mpi() );
    126         output( evt->event_scale() );
    127         output( evt->alphaQCD() );
    128         output( evt->alphaQED() );
    129         output( evt->signal_process_id() );
    130         output(   ( evt->signal_process_vertex() ?
    131                     evt->signal_process_vertex()->barcode() : 0 )   );
    132         output( evt->vertices_size() ); // total number of vertices.
    133         write_beam_particles( evt->beam_particles() );
    134         output( (int)random_states.size() );
    135         for ( std::vector<long>::iterator rs = random_states.begin();
    136               rs != random_states.end(); ++rs ) {
    137             output( *rs );
    138         }
    139         output( (int)evt->weights().size() );
    140         for ( WeightContainer::const_iterator w = evt->weights().begin();
    141               w != evt->weights().end(); ++w ) {
    142             output( *w );
    143         }
    144         output('\n');
    145         write_unit_info( evt );
    146         write_heavy_ion( evt->heavy_ion() );
    147         write_pdf_info( evt->pdf_info() );
    148         //
    149         // Output all of the vertices - note there is no real order.
    150         for ( GenEvent::vertex_const_iterator v = evt->vertices_begin();
    151               v != evt->vertices_end(); ++v ) {
    152             write_vertex( *v );
    153         }
    154     }
    155 
    156     bool IO_GenEvent::fill_next_event( GenEvent* evt ){
    157         //
    158         //
    159         // test that evt pointer is not null
    160         if ( !evt ) {
    161             std::cerr
    162                 << "IO_GenEvent::fill_next_event error - passed null event."
    163                 << std::endl;
    164             return false;
    165         }
    166         // make sure the stream is good, and that it is in input mode
    167         if ( !(*m_istr) ) return false;
    168         if ( !m_istr ) {
    169             std::cerr << "HepMC::IO_GenEvent::fill_next_event "
    170                       << " attempt to read from output file." << std::endl;
    171             return false;
    172         }
    173         //
    174         // search for event listing key before first event only.
    175         //
    176         // skip through the file just after first occurence of the start_key
    177         int iotype = 0;
    178         if ( !m_finished_first_event_io ) {
    179             iotype = m_common_io.find_file_type(*m_istr);
    180             if( iotype <= 0 ) {
    181                 std::cerr << "IO_GenEvent::fill_next_event start key not found "
    182                           << "setting badbit." << std::endl;
    183                 m_istr->clear(std::ios::badbit);
    184                 return false;
    185             }
    186             m_finished_first_event_io = 1;
    187         }
    188         //
    189         // test to be sure the next entry is of type "E" then ignore it
    190         if ( !(*m_istr) ) {
    191                 std::cerr << "IO_GenEvent::fill_next_event end of stream found "
    192                           << "setting badbit." << std::endl;
    193                 m_istr->clear(std::ios::badbit);
    194                 return false;
    195         }
    196         if ( !(*m_istr) || m_istr->peek()!='E' ) {
    197             // if the E is not the next entry, then check to see if it is
    198             // the end event listing key - if yes, search for another start key
    199             int ioendtype = m_common_io.find_end_key(*m_istr);
    200             if ( ioendtype == iotype ) {
    201                 iotype = m_common_io.find_file_type(*m_istr);
    202                 if( iotype <= 0 ) {
    203                     // this is the only case where we set an EOF state
    204                     m_istr->clear(std::ios::eofbit);
    205                     return false;
    206                 }
    207             } else if ( ioendtype > 0 ) {
    208                 std::cerr << "IO_GenEvent::fill_next_event end key does not match start key "
    209                           << "setting badbit." << std::endl;
    210                 m_istr->clear(std::ios::badbit);
    211                 return false;
    212             } else {
    213                 std::cerr << "IO_GenEvent::fill_next_event end key not found "
    214                           << "setting badbit." << std::endl;
    215                 m_istr->clear(std::ios::badbit);
    216                 return false;
    217             }
    218         }
    219         m_istr->ignore();
    220         // call the appropriate read method
    221         if( m_common_io.io_type() == gen ) {
    222             return m_common_io.read_io_genevent(m_istr, evt);
    223         } else if( m_common_io.io_type() == ascii ) {
    224             return m_common_io.read_io_ascii(m_istr, evt);
    225         } else if( m_common_io.io_type() == extascii ) {
    226             return m_common_io.read_io_extendedascii(m_istr, evt);
    227         } else if( m_common_io.io_type() == ascii_pdt ) {
    228         } else if( m_common_io.io_type() == extascii_pdt ) {
    229         }
    230         // should not get to this statement
    231         return false;
     156        write_HepMC_IO_block_begin(*m_ostr);
     157        // explicit cast is necessary
     158        GenEvent e = *evt;
     159        *m_ostr << e ;
    232160    }
    233161
     
    236164        if ( !(*m_ostr) ) return;
    237165        if ( m_ostr == NULL ) {
    238             std::cerr << "HepMC::IO_GenEvent::write_comment "
    239                       << " attempt to write to input file." << std::endl;
     166            m_error_type = IO_Exception::WrongFileType;
     167            m_error_message = "HepMC::IO_GenEvent::write_event attempt to write to input file.";
     168            std::cerr << m_error_message << std::endl;
    240169            return;
    241170        }
    242171        // write end of event listing key if events have already been written
    243         write_end_listing();
     172        write_HepMC_IO_block_end(*m_ostr);
    244173        // insert the comment key before the comment
    245174        *m_ostr << "\n" << "HepMC::IO_GenEvent-COMMENT\n";
    246175        *m_ostr << comment << std::endl;
    247176    }
    248 
    249     void IO_GenEvent::write_vertex( GenVertex* v ) {
    250         // assumes mode has already been checked
    251         if ( !v || !(*m_ostr) ) {
    252             std::cerr << "IO_GenEvent::write_vertex !v||!(*m_ostr), "
    253                       << "v="<< v << " setting badbit" << std::endl;
    254             m_ostr->clear(std::ios::badbit);
    255             return;
    256         }
    257         // First collect info we need
    258         // count the number of orphan particles going into v
    259         int num_orphans_in = 0;
    260         for ( GenVertex::particles_in_const_iterator p1
    261                   = v->particles_in_const_begin();
    262               p1 != v->particles_in_const_end(); ++p1 ) {
    263             if ( !(*p1)->production_vertex() ) ++num_orphans_in;
    264         }
    265         //
    266         *m_ostr << 'V';
    267         output( v->barcode() ); // v's unique identifier
    268         output( v->id() );
    269         output( v->position().x() );
    270         output( v->position().y() );
    271         output( v->position().z() );
    272         output( v->position().t() );
    273         output( num_orphans_in );
    274         output( (int)v->particles_out_size() );
    275         output( (int)v->weights().size() );
    276         for ( WeightContainer::iterator w = v->weights().begin();
    277               w != v->weights().end(); ++w ) {
    278             output( *w );
    279         }
    280         output('\n');
    281         for ( GenVertex::particles_in_const_iterator p2
    282                   = v->particles_in_const_begin();
    283               p2 != v->particles_in_const_end(); ++p2 ) {
    284             if ( !(*p2)->production_vertex() ) {
    285                 write_particle( *p2 );
    286             }
    287         }
    288         for ( GenVertex::particles_out_const_iterator p3
    289                   = v->particles_out_const_begin();
    290               p3 != v->particles_out_const_end(); ++p3 ) {
    291             write_particle( *p3 );
    292         }
    293     }
    294 
    295     void IO_GenEvent::write_beam_particles(
    296         std::pair<HepMC::GenParticle *,HepMC::GenParticle *> pr ) {
    297         GenParticle* p = pr.first;
    298         //m_file << 'B';
    299         if(!p) {
    300            output( 0 );
    301         } else {
    302            output( p->barcode() );
    303         }
    304         p = pr.second;
    305         if(!p) {
    306            output( 0 );
    307         } else {
    308            output( p->barcode() );
    309         }
    310     }
    311 
    312     void IO_GenEvent::write_heavy_ion( HeavyIon const * ion ) {
    313         // assumes mode has already been checked
    314         if ( !(*m_ostr) ) {
    315             std::cerr << "IO_GenEvent::write_heavy_ion !(*m_ostr), "
    316                       << " setting badbit" << std::endl;
    317             m_ostr->clear(std::ios::badbit);
    318             return;
    319         }
    320         *m_ostr << 'H';
    321         // HeavyIon* is set to 0 by default
    322         if ( !ion  ) {
    323             output( 0 );
    324             output( 0 );
    325             output( 0 );
    326             output( 0 );
    327             output( 0 );
    328             output( 0 );
    329             output( 0 );
    330             output( 0 );
    331             output( 0 );
    332             output( 0. );
    333             output( 0. );
    334             output( 0. );
    335             output( 0. );
    336             output('\n');
    337             return;
    338         }
    339         //
    340         output( ion->Ncoll_hard() );
    341         output( ion->Npart_proj() );
    342         output( ion->Npart_targ() );
    343         output( ion->Ncoll() );
    344         output( ion->spectator_neutrons() );
    345         output( ion->spectator_protons() );
    346         output( ion->N_Nwounded_collisions() );
    347         output( ion->Nwounded_N_collisions() );
    348         output( ion->Nwounded_Nwounded_collisions() );
    349         output( ion->impact_parameter() );
    350         output( ion->event_plane_angle() );
    351         output( ion->eccentricity() );
    352         output( ion->sigma_inel_NN() );
    353         output('\n');
    354     }
    355 
    356     void IO_GenEvent::write_pdf_info( PdfInfo const * pdf ) {
    357         // assumes mode has already been checked
    358         if ( !(*m_ostr) ) {
    359             std::cerr << "IO_GenEvent::write_pdf_info !(*m_ostr), "
    360                       << " setting badbit" << std::endl;
    361             m_ostr->clear(std::ios::badbit);
    362             return;
    363         }
    364         *m_ostr << 'F';
    365         // PdfInfo* is set to 0 by default
    366         if ( !pdf ) {
    367             output( 0 );
    368             output( 0 );
    369             output( 0. );
    370             output( 0. );
    371             output( 0. );
    372             output( 0. );
    373             output( 0. );
    374             output( 0 );
    375             output( 0 );
    376             output('\n');
    377             return;
    378         }
    379         //
    380         output( pdf->id1() );
    381         output( pdf->id2() );
    382         output( pdf->x1() );
    383         output( pdf->x2() );
    384         output( pdf->scalePDF() );
    385         output( pdf->pdf1() );
    386         output( pdf->pdf2() );
    387         output( pdf->pdf_id1() );
    388         output( pdf->pdf_id2() );
    389         output('\n');
    390     }
    391 
    392     void IO_GenEvent::write_unit_info( const GenEvent* evt ) {
    393         if ( !(*m_ostr) ) {
    394             std::cerr << "IO_GenEvent::write_unit_info !(*m_ostr), "
    395                       << " setting badbit" << std::endl;
    396             m_ostr->clear(std::ios::badbit);
    397             return;
    398         }
    399         // could write enums here, but strings are more readable
    400         *m_ostr << "U " << name(evt->momentum_unit());
    401         *m_ostr << " " << name(evt->length_unit());
    402         output('\n');
    403     }
    404 
    405     void IO_GenEvent::write_particle( GenParticle* p ) {
    406         // assumes mode has already been checked
    407         if ( !p || !(*m_ostr) ) {
    408             std::cerr << "IO_GenEvent::write_particle !p||!(*m_ostr), "
    409                       << "p="<< p << " setting badbit" << std::endl;
    410             m_ostr->clear(std::ios::badbit);
    411             return;
    412         }
    413         *m_ostr << 'P';
    414         output( p->barcode() );
    415         output( p->pdg_id() );
    416         output( p->momentum().px() );
    417         output( p->momentum().py() );
    418         output( p->momentum().pz() );
    419         output( p->momentum().e() );
    420         output( p->generated_mass() );
    421         output( p->status() );
    422         output( p->polarization().theta() );
    423         output( p->polarization().phi() );
    424         // since end_vertex is oftentimes null, this CREATES a null vertex
    425         // in the map
    426         output(   ( p->end_vertex() ? p->end_vertex()->barcode() : 0 )  );
    427         *m_ostr << ' ' << p->flow() << "\n";
    428     }
    429 
    430     void IO_GenEvent::write_particle_data( const ParticleData* pdata ) {
    431         // assumes mode has already been checked
    432         if ( !pdata || !(*m_ostr) ) {
    433             std::cerr << "IO_GenEvent::write_particle_data !pdata||!(*m_ostr), "
    434                       << "pdata="<< pdata << " setting badbit" << std::endl;
    435             m_ostr->clear(std::ios::badbit);
    436             return;
    437         }
    438         *m_ostr << 'D';
    439         output( pdata->pdg_id() );
    440         output( pdata->charge() );
    441         output( pdata->mass() );
    442         output( pdata->clifetime() );
    443         output( (int)(pdata->spin()*2.+.1) );
    444         // writes the first 21 characters starting with 0
    445         *m_ostr << " " << pdata->name().substr(0,21) << "\n";
    446     }
    447 
    448     HeavyIon* IO_GenEvent::read_heavy_ion()
    449     {
    450         // assumes mode has already been checked
    451         //
    452         // test to be sure the next entry is of type "H" then ignore it
    453         if ( !(*m_istr) || m_istr->peek()!='H' ) {
    454             std::cerr << "IO_GenEvent::read_heavy_ion setting badbit." << std::endl;
    455             m_istr->clear(std::ios::badbit);
    456             return false;
    457         }
    458         m_istr->ignore();
    459         // read values into temp variables, then create a new HeavyIon object
    460         int nh =0, np =0, nt =0, nc =0,
    461             neut = 0, prot = 0, nw =0, nwn =0, nwnw =0;
    462         float impact = 0., plane = 0., xcen = 0., inel = 0.;
    463         *m_istr >> nh >> np >> nt >> nc >> neut >> prot
    464                >> nw >> nwn >> nwnw >> impact >> plane >> xcen >> inel;
    465         m_istr->ignore(2,'\n');
    466         if( nh == 0 ) return false;
    467         HeavyIon* ion = new HeavyIon(nh, np, nt, nc, neut, prot,
    468                                      nw, nwn, nwnw,
    469                                      impact, plane, xcen, inel );
    470         //
    471         return ion;
    472     }
    473 
    474     GenParticle* IO_GenEvent::read_particle(
    475         TempParticleMap& particle_to_end_vertex ){
    476         // assumes mode has already been checked
    477         //
    478         // test to be sure the next entry is of type "P" then ignore it
    479         if ( !(*m_istr) || m_istr->peek()!='P' ) {
    480             std::cerr << "IO_GenEvent::read_particle setting badbit."
    481                       << std::endl;
    482             m_istr->clear(std::ios::badbit);
    483             return false;
    484         }
    485         m_istr->ignore();
    486         //
    487         // declare variables to be read in to, and read everything except flow
    488         double px = 0., py = 0., pz = 0., e = 0., m = 0., theta = 0., phi = 0.;
    489         int bar_code = 0, id = 0, status = 0, end_vtx_code = 0, flow_size = 0;
    490         *m_istr >> bar_code >> id >> px >> py >> pz >> e >> m >> status
    491                >> theta >> phi >> end_vtx_code >> flow_size;
    492         //
    493         // read flow patterns if any exist
    494         Flow flow;
    495         int code_index, code;
    496         for ( int i = 1; i <= flow_size; ++i ) {
    497             *m_istr >> code_index >> code;
    498             flow.set_icode( code_index,code);
    499         }
    500         m_istr->ignore(2,'\n'); // '\n' at end of entry
    501         GenParticle* p = new GenParticle( FourVector(px,py,pz,e),
    502                                     id, status, flow,
    503                                     Polarization(theta,phi) );
    504         p->set_generated_mass( m );
    505         p->suggest_barcode( bar_code );
    506         //
    507         // all particles are connected to their end vertex separately
    508         // after all particles and vertices have been created - so we keep
    509         // a map of all particles that have end vertices
    510         if ( end_vtx_code != 0 ) {
    511             particle_to_end_vertex.addEndParticle(p,end_vtx_code);
    512         }
    513         return p;
    514     }
    515 
    516     ParticleData* IO_GenEvent::read_particle_data( ParticleDataTable* pdt ) {
    517         // assumes mode has already been checked
    518         //
    519         // test to be sure the next entry is of type "D" then ignore it
    520         if ( !(*m_istr) || m_istr->peek()!='D' ) return false;
    521         m_istr->ignore();
    522         //
    523         // read values into temp variables then create new ParticleData object
    524         char its_name[22];
    525         int its_id = 0, its_spin = 0; 
    526         double its_charge = 0, its_mass = 0, its_clifetime = 0;
    527         *m_istr >> its_id >> its_charge >> its_mass
    528                >> its_clifetime >> its_spin;
    529         m_istr->ignore(1); // eat the " "
    530         m_istr->getline( its_name, 22, '\n' );
    531         ParticleData* pdata = new ParticleData( its_name, its_id, its_charge,
    532                                                 its_mass, its_clifetime,
    533                                                 double(its_spin)/2.);
    534         pdt->insert(pdata);
    535         return pdata;
    536     }
    537 
    538     bool IO_GenEvent::write_end_listing() {
    539         if ( m_finished_first_event_io && (m_ostr != NULL) ) {
    540             m_common_io.write_IO_GenEvent_End(*m_ostr);
    541             *m_ostr << std::flush;
    542             m_finished_first_event_io = 0;
    543             return true;
    544         }
    545         return false;
    546     }
    547177       
    548178} // HepMC
  • trunk/Utilities/HepMC/src/Polarization.cc

    r349 r571  
    99namespace HepMC {
    1010
     11    Polarization::Polarization( )
     12    : m_theta( 0. ),
     13      m_phi( 0. ),
     14      m_defined( false )
     15    { }
     16
    1117    Polarization::Polarization( double theta, double phi )
    1218    : m_theta( valid_theta(theta) ),
    13       m_phi  ( valid_phi(phi) )
     19      m_phi  ( valid_phi(phi) ),
     20      m_defined( true )
    1421    { }
    1522
    1623    Polarization::Polarization( const Polarization& inpolar )
    1724    : m_theta( valid_theta( inpolar.theta() ) ),
    18       m_phi  ( valid_phi(   inpolar.phi()   ) )
     25      m_phi  ( valid_phi(   inpolar.phi()   ) ),
     26      m_defined( inpolar.is_defined() )
    1927    { }
    2028
    2129    Polarization::Polarization( const ThreeVector& vec3in )
    2230    : m_theta( valid_theta( vec3in.theta() ) ),
    23       m_phi  ( valid_phi(   vec3in.phi()   ) )
     31      m_phi  ( valid_phi(   vec3in.phi()   ) ),
     32      m_defined( true )
    2433    { }
    2534
     
    2837        std::swap( m_theta, other.m_theta );
    2938        std::swap( m_phi,   other.m_phi   );
     39        std::swap( m_defined, other.m_defined );
    3040    }
    3141
     
    6474        return m_phi = valid_phi( phi );
    6575    }
     76   
     77    bool Polarization::is_defined( ) const {
     78        return m_defined;
     79    }
     80   
     81    void Polarization::set_undefined() {
     82        m_defined = false;
     83        m_theta = 0.;
     84        m_phi = 0.;
     85    }
    6686
    6787    void Polarization::set_theta_phi( double theta, double phi ) {
    6888        set_theta( theta );
    6989        set_phi( phi ) ;
     90        m_defined = true;
    7091    }
    7192
     
    7394        set_theta( vec3in.theta() );
    7495        set_phi( vec3in.phi() );
     96        m_defined = true;
    7597        return vec3in;
    7698    }
  • trunk/Utilities/HepMC/src/Units.cc

    r349 r571  
    5252    // if this function fails to compile, rerun configure using --with-length_units
    5353    LengthUnit default_length_unit() {
    54       //return @HEPMC_DEFAULT_LEN_UNIT@ ;
    5554      return MM ;
    5655    }
     
    5857    // if this function fails to compile, rerun configure using --with-momentum_units
    5958    MomentumUnit default_momentum_unit() {
    60       //return @HEPMC_DEFAULT_MOM_UNIT@ ;
    61       return GEV;
     59      return GEV ;
    6260    }
    6361
Note: See TracChangeset for help on using the changeset viewer.