Can I have Comments open to specific users only?

You can check for a user role. This should work when you put the code into the template above the call to comments.php:

if ( current_user_can( 'actor' ) ) // or use 'publish_posts'
    add_filter( 'comments_open', '__return_true' );