Disable Admin Bar for specific content

You can add some code into your theme’s functions.php file that checks the post type or whatever condition you want and when the condition is met, add this filter:

add_filter( ‘show_admin_bar’, ‘__return_false’ );

See this codex page for more information:

http://codex.wordpress.org/Plugin_API/Filter_Reference/show_admin_bar