<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    On 07/08/12 22:27, Hannes Jung wrote:
    <blockquote cite="mid:B395C2ED-B4F9-4BC0-8562-11E1A77BEC42@cern.ch"
      type="cite">
      <pre wrap="">Dear Andy et al

thanks a lot for your reply.

It's really fascinating, how complicated and difficult very trivial things are in Rivet.
It must be a MUST, that one can print out the HEPMC record in a readable format...
but it seems I can only get it via 
event.genEvent().print()
but then the format is cryptic.</pre>
    </blockquote>
    Hi Hannes,<br>
    <br>
    I always use the HepMC print() functions, I never had problems<br>
    looking at particles, vertices or whole events.<br>
    <br>
    Here is some example syntax I use to check vertices:<br>
    <blockquote>const GenEvent & hepmc = event.genEvent();<br>
      for (HepMC::GenEvent::vertex_const_iterator vtx =
      hepmc.vertices_begin() ;<br>
                   vtx != hepmc.vertices_end() ; ++vtx) {<br>
          (*vtx)->print();<br>
      }<br>
    </blockquote>
    and similar for particles coming from a decay vertex:<br>
    <br>
    <blockquote>const HepMC::GenParticle& genp = p.genParticle();<br>
      HepMC::GenVertex* decV  = genp.end_vertex();<br>
    </blockquote>
    <blockquote>for (HepMC::GenVertex::particles_out_const_iterator pp =
      decV->particles_out_const_begin() ;<br>
                   pp != decV->particles_out_const_end() ; ++pp) {<br>
                   (*pp)->print();<br>
    </blockquote>
            }<br>
    <br>
    Hope that helps,<br>
    Holger<br>
    <blockquote cite="mid:B395C2ED-B4F9-4BC0-8562-11E1A77BEC42@cern.ch"
      type="cite">
      <pre wrap="">

How do you people check, if selections etc are correct, if there is no way to printout
what comes from the MC ?

It would be really very good if this could be provided.... I tried to do it, but failed
due to my ignorance in the Rivet structure... so if anyone can help there, I would
be really, really very happy....

I try to promote Rivet for our summer-students.... so.........

Thanks a lot

cheers
Hannes

On 07.08.2012, at 17:07, Andy Buckley wrote:

</pre>
      <blockquote type="cite">
        <pre wrap="">It's really a HepMC thing: Rivet doesn't include any special printout
formatting for GenEvents. The best I can think of offhand is, if you
have a Particle p, to use p.genParticle().print(). Any other HepMC
library function can also be used on the p.genEvent() reference.

Hope that helps,
Andy


On 07/08/12 15:18, Hannes Jung wrote:
</pre>
        <blockquote type="cite">
          <pre wrap="">Dear Rivet developers

I was wondering, whether there is an easy way to print out the HepMC
record in human readable format within Rivet, so that one can see
directly the event one is analyzing ?

Probably I have just not found the proper place, where this is
described... any hint would be great...

thanks a lot

cheers
Hannes


***********************************************************************
Hannes Jung 
Email: <a class="moz-txt-link-abbreviated" href="mailto:Hannes.Jung@desy.de">Hannes.Jung@desy.de</a> <a class="moz-txt-link-rfc2396E" href="mailto:Hannes.Jung@desy.de"><mailto:Hannes.Jung@desy.de></a> 
mobile :+49 40 8998 93741
<a class="moz-txt-link-freetext" href="http://www.desy.de/~jung">http://www.desy.de/~jung</a>                                           
Tel: +49 (0) 40 8998 3741         
Fax: +49 (0) 40 8998 3093 
DESY, CMS 01B/02.213
Notkestr.85, 22603 Hamburg, FRG   
***********************************************************************






_______________________________________________
Rivet mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Rivet@projects.hepforge.org">Rivet@projects.hepforge.org</a>
<a class="moz-txt-link-freetext" href="http://www.hepforge.org/lists/listinfo/rivet">http://www.hepforge.org/lists/listinfo/rivet</a>

</pre>
        </blockquote>
        <pre wrap="">

-- 
Dr Andy Buckley, SUPA Advanced Research Fellow
Particle Physics Expt Group, University of Edinburgh

The University of Edinburgh is a charitable body, registered in
Scotland, with registration number SC005336.

</pre>
      </blockquote>
      <pre wrap="">
***********************************************************************
Hannes Jung 
Email: <a class="moz-txt-link-abbreviated" href="mailto:Hannes.Jung@desy.de">Hannes.Jung@desy.de</a> 
mobile :+49 40 8998 93741
<a class="moz-txt-link-freetext" href="http://www.desy.de/~jung">http://www.desy.de/~jung</a>                                           
Tel: +49 (0) 40 8998 3741         
Fax: +49 (0) 40 8998 3093 
DESY, CMS 01B/02.213
Notkestr.85, 22603 Hamburg, FRG   
***********************************************************************




_______________________________________________
Rivet mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Rivet@projects.hepforge.org">Rivet@projects.hepforge.org</a>
<a class="moz-txt-link-freetext" href="http://www.hepforge.org/lists/listinfo/rivet">http://www.hepforge.org/lists/listinfo/rivet</a>
</pre>
    </blockquote>
    <br>
  </body>
</html>